/* AAREL5 LLC — Pluck the Day */

:root {
  --forest: #1a3c2a;
  --forest-light: #2d5a3d;
  --apple-red: #c0392b;
  --apple-red-light: #e74c3c;
  --cream: #faf6ef;
  --cream-dark: #f0e8d8;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --bark: #4a3728;
  --text: #2c2416;
  --text-muted: #5c5347;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(26, 60, 42, 0.12);
  --shadow-lg: 0 12px 48px rgba(26, 60, 42, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--forest-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--apple-red);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--apple-red);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
}

/* Layout */
.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--forest);
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.cookie-inner p {
  flex: 1;
  min-width: 240px;
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.92;
}

.cookie-inner a {
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--apple-red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.35);
}

.btn-primary:hover {
  background: var(--apple-red-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(192, 57, 43, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(250, 246, 239, 0.3);
}

.btn-ghost:hover {
  background: rgba(250, 246, 239, 0.1);
  color: var(--cream);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
}

.logo svg,
.logo-icon {
  height: 34px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.nav:not(.scrolled) .logo-icon,
.footer .logo-icon {
  filter: brightness(0) invert(1);
}

.logo-icon--footer {
  height: 26px;
}

.nav.scrolled .logo,
.nav.scrolled .nav-links a {
  color: var(--forest);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all var(--transition);
}

.nav.scrolled .nav-toggle span {
  background: var(--forest);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 60, 42, 0.78) 0%,
    rgba(26, 60, 42, 0.45) 50%,
    rgba(26, 60, 42, 0.62) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 4rem;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width: 540px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* About */
.about {
  background: var(--white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-quote {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--cream);
  border-left: 4px solid var(--apple-red);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--forest);
}

/* Services */
.services {
  background:
    linear-gradient(rgba(250, 246, 239, 0.94), rgba(250, 246, 239, 0.94)),
    url("../images/services-bg.jpg") center / cover no-repeat fixed;
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-header .section-intro {
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-light), var(--apple-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cream-dark);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--forest-light), var(--forest));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Why Us */
.why {
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.why h2,
.why h3 {
  color: var(--white);
}

.why .section-label {
  color: var(--gold-light);
}

.why .section-intro {
  color: rgba(250, 246, 239, 0.75);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-item {
  text-align: center;
  padding: 1.5rem;
}

.why-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.why-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.why-item p {
  color: rgba(250, 246, 239, 0.7);
  font-size: 0.9375rem;
}

/* Contact */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-stamp {
  margin-top: 2rem;
  max-width: 200px;
}

.contact-stamp img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.88;
  filter: contrast(1.05);
}

.contact-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  padding: 1rem;
  background: var(--forest-light);
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
  margin-top: 1rem;
}

.form-success.visible {
  display: block;
  animation: fadeUp 0.5s ease;
}

.form-error {
  display: none;
  padding: 1rem;
  background: #fdecea;
  color: #8b2e24;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9375rem;
}

.form-error.visible {
  display: block;
  animation: fadeUp 0.5s ease;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form .btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Footer */
.footer {
  background: var(--bark);
  color: rgba(250, 246, 239, 0.75);
  padding: 2rem 0 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
  margin-bottom: 1.25rem;
}

.footer-logo {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.footer-logo svg,
.footer-logo .logo-icon {
  height: 26px;
}

.footer-brand .logo {
  color: var(--cream);
}

.footer-brand p {
  font-size: 0.8125rem;
  max-width: 280px;
  line-height: 1.5;
  margin: 0;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 0.625rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.3rem;
}

.footer-address {
  font-style: normal;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(250, 246, 239, 0.75);
}

.footer a,
.footer a:visited {
  color: var(--gold-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--cream);
  text-decoration: underline;
}

.footer-brand .logo,
.footer-brand .logo:visited {
  color: var(--cream);
}

.footer-brand .logo:hover {
  color: var(--gold-light);
  text-decoration: none;
}

.footer-links a,
.footer-links a:visited {
  color: rgba(250, 246, 239, 0.85);
  font-size: 0.8125rem;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-address a,
.footer-address a:visited {
  color: var(--gold-light);
}

.footer-legal a,
.footer-legal a:visited {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 239, 0.12);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}

/* Legal Pages */
.legal-page {
  padding-top: 7rem;
  padding-bottom: 4rem;
  min-height: 70vh;
}

.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--forest-light);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--apple-red);
}

.legal-nav {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

/* Animations on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--forest);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right var(--transition);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--cream);
    font-size: 1.125rem;
  }

  .nav-toggle {
    display: block;
    z-index: 101;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-stamp {
    max-width: 180px;
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-scroll {
    display: none;
  }

  .services {
    background-attachment: scroll;
  }
}
