/* ============================================================
   PAELLA WEEKEND — css/styles.css
   Aesthetic: Spanish Editorial — warm, refined, Mediterranean
   Headings : Cormorant · Body: Quattrocento
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Quattrocento:wght@400;700&display=swap');


/* ── 0. DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Exact brand palette */
  --c-white:  #ffffff;
  --c-grey:   #e9e9e9;
  --c-sage:   #e2eddf;
  --c-gold:   #d5bb58;
  --c-dark:   #1c1811;
  --c-text:   #2f241d;
  --c-cream:  #fbfbf8;

  /* Operational derivatives */
  --c-muted:  #8c7463;
  --c-rule:   rgba(47, 36, 29, 0.10);

  /* Typography */
  --f-display: 'Cormorant', Georgia, serif;
  --f-body:    'Quattrocento', Georgia, serif;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  72px;
  --space-xl:  120px;

  /* Timing */
  --t-fast:  0.18s ease;
  --t-mid:   0.35s ease;
  --t-slow:  0.65s ease;

  /* Layout */
  --max-w:   1140px;
  --nav-h:   76px;
}


/* ── 1. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
button { font-family: var(--f-body); cursor: pointer; border: none; outline: none; background: none; }
input, textarea, select { font-family: var(--f-body); }


/* ── 2. UTILITIES ───────────────────────────────────────────── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Small-caps label above section headings */
.section-label {
  display: block;
  font-family: var(--f-body);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 14px;
}

/* Scroll-reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── 3. BUTTONS ─────────────────────────────────────────────── */

/* Outlined rectangular — on light backgrounds */
.btn-git {
  display: inline-block;
  padding: 15px 52px;
  border: 1.5px solid var(--c-text);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background var(--t-mid), color var(--t-mid);
}
.btn-git:hover {
  background: var(--c-text);
  color: var(--c-white);
}
.btn-git:active {
  opacity: 0.85;
}

/* Light variant — on dark backgrounds */
.btn-git-light {
  display: inline-block;
  padding: 15px 52px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background var(--t-mid), color var(--t-mid), border-color var(--t-mid);
}
.btn-git-light:hover {
  background: var(--c-white);
  color: var(--c-dark);
  border-color: var(--c-white);
}


/* ── 4. NAVIGATION ──────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t-mid), box-shadow var(--t-mid);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(47, 36, 29, 0.07);
}

.nav .container { width: 100%; }

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

.nav__logo img {
  height: 42px;
  width: auto;
  transition: opacity var(--t-fast);
}
.nav__logo:hover img { opacity: 0.75; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav__links a {
  font-family: var(--f-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--c-text);
  letter-spacing: 0.4px;
  transition: opacity var(--t-fast);
}
.nav__links a:hover { opacity: 0.5; }

/* CTA pill in nav */
.nav__links .nav-cta {
  padding: 9px 26px;
  border: 1.5px solid var(--c-text);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background var(--t-fast), color var(--t-fast), opacity var(--t-fast);
}
.nav__links .nav-cta:hover {
  background: var(--c-text);
  color: var(--c-white);
  opacity: 1;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--c-text);
  border-radius: 1px;
  transition: all var(--t-mid);
}
.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Full-screen mobile overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.nav__mobile.open { display: flex; }

.nav__mobile a.mobile-link {
  font-family: var(--f-display);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.80);
  transition: color var(--t-fast);
}
.nav__mobile a.mobile-link:hover { color: var(--c-gold); }
.nav__mobile .btn-git-light { margin-top: 12px; }

.nav__mobile-close {
  position: absolute;
  top: 28px; right: 32px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color var(--t-fast);
}
.nav__mobile-close:hover { color: var(--c-white); }


/* ── 5. WELCOME ─────────────────────────────────────────────── */

.welcome {
  background: var(--c-white);
  padding-top: calc(var(--nav-h) + 88px);
  padding-bottom: 0;
  text-align: center;
}

.welcome__logo {
  display: block;
  width: clamp(190px, 28vw, 300px);
  margin: 0 auto 32px;
}

/* Thin horizontal rule between logo and subtitle */
.welcome__rule {
  width: 56px;
  height: 1px;
  background: var(--c-rule);
  margin: 0 auto 32px;
}

.welcome__subtitle {
  font-family: var(--f-body);
  font-size: 0.675rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 48px;
}

/* Wide paella banner strip */
.welcome__banner {
  position: relative;
  width: 100%;
  margin-top: 72px;
  overflow: hidden;
  line-height: 0;
}

.welcome__banner img {
  width: 100%;
  height: clamp(240px, 36vw, 500px);
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

/* Gradient overlays — top fades from white, bottom fades to team grey */
.welcome__banner::before,
.welcome__banner::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 90px;
  z-index: 1;
  pointer-events: none;
}
.welcome__banner::before {
  top: 0;
  background: linear-gradient(to bottom, var(--c-white), transparent);
}
.welcome__banner::after {
  bottom: 0;
  background: linear-gradient(to top, var(--c-grey), transparent);
}


/* ── 6. TEAM ─────────────────────────────────────────────────── */

.team {
  background: var(--c-grey);
  padding: var(--space-xl) 0;
}

.team__heading {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.team__photo { overflow: hidden; }

.team__photo-frame {
  overflow: hidden;
  background: var(--c-white);
}
.team__photo-frame img {
  width: 100%;
  height: clamp(340px, 42vw, 520px);
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform var(--t-slow);
}
.team__photo:hover .team__photo-frame img {
  transform: scale(1.04);
}

.team__bios {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: var(--space-sm);
}

.team__person {
  padding: var(--space-md) 0;
}
.team__person + .team__person {
  border-top: 1px solid var(--c-rule);
}

.team__name {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin-bottom: 6px;
  line-height: 1.2;
}

.team__role {
  display: block;
  font-family: var(--f-body);
  font-size: 0.6rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 18px;
}

.team__bio {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--c-text);
  max-width: 52ch;
}


/* ── 7. STORY ─────────────────────────────────────────────────── */

.story {
  background: var(--c-sage);
  padding: var(--space-xl) 0;
}

.story__heading {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.story__text {
  max-width: 68ch;
}

.story__text p {
  font-size: 1.0625rem;
  line-height: 1.88;
  color: var(--c-text);
  margin-bottom: 24px;
}
.story__text p:last-child { margin-bottom: 0; }

/* "Come hungry." — pull-quote em */
.story__text em {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.25em;
  line-height: 1.4;
  color: var(--c-text);
}


/* ── 8. PACKAGES ────────────────────────────────────────────── */

.packages {
  background: var(--c-white);
  padding: var(--space-xl) 0;
}

.packages .section-label {
  text-align: center;
}

.packages__heading {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 20px;
  line-height: 1.1;
  text-align: center;
}

.packages__intro {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--c-muted);
  max-width: 50ch;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: var(--space-md);
}

.package-card {
  text-align: center;
  transition: transform var(--t-mid);
}
.package-card:hover { transform: translateY(-8px); }

/* Circular image — double-ring border treatment */
.package-card__img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, var(--c-cream), var(--c-grey));
  border: 1.5px solid rgba(47, 36, 29, 0.09);
  box-shadow:
    0 0 0 6px var(--c-white),
    0 0 0 7.5px rgba(47, 36, 29, 0.07);
  transition: box-shadow var(--t-mid);
}
.package-card:hover .package-card__img {
  box-shadow:
    0 0 0 6px var(--c-white),
    0 0 0 7.5px rgba(47, 36, 29, 0.18);
}

.package-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.package-card:hover .package-card__img img {
  transform: scale(1.08);
}

.package-card__name {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.package-card__desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--c-muted);
  max-width: 30ch;
  margin: 0 auto;
}

.packages__note {
  text-align: center;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--c-muted);
  margin-bottom: var(--space-md);
}


/* ── 9. PAELLAS MENU ─────────────────────────────────────────── */

.paellas-menu {
  background: var(--c-gold);
  padding: var(--space-xl) 0;
}

.paellas-menu .section-label {
  color: rgba(28, 24, 17, 0.55);
}

.paellas-menu__heading {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-dark);
  margin-bottom: 20px;
  line-height: 1.1;
}

.paellas-menu__tagline {
  font-size: 1.0625rem;
  line-height: 1.82;
  color: rgba(28, 24, 17, 0.72);
  max-width: 60ch;
  margin-bottom: var(--space-lg);
}

/* Menu list */
.paellas-menu__list {
  border-top: 1px solid rgba(28, 24, 17, 0.15);
}

.paella-item {
  padding: 36px 0;
  border-bottom: 1px solid rgba(28, 24, 17, 0.15);
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: var(--space-lg);
  align-items: baseline;
  transition: opacity var(--t-fast);
}
.paella-item:hover { opacity: 0.82; }

.paella-item__name {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 600;
  font-style: italic;
  color: var(--c-dark);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.paella-item__desc {
  font-size: 0.9375rem;
  line-height: 1.82;
  color: rgba(28, 24, 17, 0.75);
}


/* ── 10. TESTIMONIALS ─────────────────────────────────────────── */

.testimonials {
  background: var(--c-dark);
  padding: var(--space-xl) 0;
}

.testimonials .section-label {
  color: var(--c-gold);
  opacity: 0.8;
}

.testimonials__heading {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.testimonials__intro {
  font-size: 0.9375rem;
  line-height: 1.88;
  color: rgba(255, 255, 255, 0.45);
  max-width: 62ch;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.testimonial {
  padding: 44px 40px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--t-mid), background var(--t-mid);
}
.testimonial:hover {
  border-color: rgba(213, 187, 88, 0.22);
  background: rgba(213, 187, 88, 0.03);
}

/* Dramatic quote mark */
.quote-mark {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.65;
  color: var(--c-gold);
  opacity: 0.45;
  margin-bottom: 20px;
  user-select: none;
  pointer-events: none;
}

.testimonial__text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
}

.testimonial__author {
  font-family: var(--f-body);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}


/* ── 11. CONTACT ─────────────────────────────────────────────── */

.contact {
  background: var(--c-dark);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-paella.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.055;
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Logo inverted to white */
.contact__logo {
  display: block;
  height: 56px;
  width: auto;
  margin: 0 auto 28px;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.contact .section-label {
  color: var(--c-gold);
  opacity: 0.75;
}

.contact__heading {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 580px;
  margin: 0 auto var(--space-lg);
  text-align: left;
}

.contact__col-label {
  display: block;
  font-family: var(--f-body);
  font-size: 0.6rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--c-gold);
  opacity: 0.75;
  margin-bottom: 16px;
}

.contact__col p,
.contact__col a {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--t-fast);
}
.contact__col a:hover { color: var(--c-white); }

.contact__cta {
  margin-top: var(--space-md);
}


/* ── 12. FOOTER ─────────────────────────────────────────────── */

.footer {
  background: #100e09;
  padding: 28px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer p {
  font-family: var(--f-body);
  font-size: 0.75rem;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.6;
}


/* ── 13. QUOTE PAGE ─────────────────────────────────────────── */

.quote-nav {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-rule);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.quote-nav .nav__inner { }

.quote-nav .nav__links {
  display: flex;
}

.quote-nav .nav__links a {
  color: var(--c-text);
  font-size: 0.8125rem;
  text-shadow: none;
}

.quote-page {
  background: var(--c-cream);
  min-height: 100vh;
  padding: 72px 0 var(--space-xl);
}

.quote-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.back-link {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.625rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 32px;
  transition: color var(--t-fast);
}
.back-link:hover { color: var(--c-text); }

.quote-header h1 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 16px;
  line-height: 1.1;
}

.quote-header p {
  font-size: 1.0625rem;
  color: var(--c-muted);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.8;
}

/* Form card */
.quote-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--c-white);
  padding: 60px 64px;
  border: 1px solid rgba(47, 36, 29, 0.09);
}

.form-section {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(47, 36, 29, 0.07);
}
.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section-title {
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--f-body);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.2px;
}

.required {
  color: #b85832;
  margin-left: 2px;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid rgba(47, 36, 29, 0.13);
  border-radius: 0;
  font-family: var(--f-body);
  font-size: 0.9375rem;
  color: var(--c-text);
  background: var(--c-white);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(47, 36, 29, 0.27);
  font-size: 0.875rem;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-text);
  box-shadow: 0 0 0 3px rgba(47, 36, 29, 0.05);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #b85832;
  box-shadow: 0 0 0 3px rgba(184, 88, 50, 0.08);
}

.error-msg {
  font-size: 0.75rem;
  color: #b85832;
  display: none;
}
.has-error .error-msg { display: block; }

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

/* Dietary requirements — visually highlighted box */
.dietary-highlight {
  background: rgba(213, 187, 88, 0.05);
  border: 1.5px solid rgba(213, 187, 88, 0.28);
  padding: 28px 28px 24px;
}

.dietary-note {
  font-size: 0.8125rem;
  color: var(--c-muted);
  line-height: 1.72;
  margin-top: 14px;
  padding: 12px 16px;
  border-left: 2px solid var(--c-gold);
  background: rgba(213, 187, 88, 0.05);
}

/* Honeypot — never visible */
.hp-field {
  display: none !important;
  visibility: hidden !important;
}

/* Submit row */
.form-submit {
  text-align: center;
  padding-top: var(--space-md);
}

/* The submit button reuses btn-git style but filled */
.form-submit .btn.btn-primary {
  display: inline-block;
  min-width: 260px;
  padding: 17px 52px;
  background: var(--c-text);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  border: 1.5px solid var(--c-text);
  cursor: pointer;
  transition: background var(--t-mid), transform var(--t-fast);
}
.form-submit .btn.btn-primary:hover {
  background: var(--c-dark);
  border-color: var(--c-dark);
  transform: translateY(-1px);
}
.form-submit .btn.btn-primary:active {
  transform: translateY(0);
}

.form-trust {
  margin-top: 18px;
  font-size: 0.75rem;
  color: rgba(47, 36, 29, 0.38);
  letter-spacing: 0.2px;
}

/* Success */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}
.form-success.visible { display: block; }

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 24px;
}

.form-success h3 {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--c-text);
}

.form-success p {
  color: var(--c-muted);
  line-height: 1.85;
  font-size: 1rem;
  max-width: 46ch;
  margin: 0 auto;
}

.form-success a {
  color: var(--c-text);
  font-weight: 700;
  border-bottom: 1px solid var(--c-rule);
  transition: border-color var(--t-fast);
}
.form-success a:hover { border-color: var(--c-text); }

/* Button loading state */
.btn-loading {
  pointer-events: none;
  opacity: 0.65;
  position: relative;
}
.btn-loading::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}


/* ── 14. RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 960px) {
  .paella-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .packages__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 88px;
    --space-lg: 56px;
  }

  .nav__links   { display: none; }
  .nav__hamburger { display: flex; }

  /* Team: photo full-width on top, bios below */
  .team__grid {
    grid-template-columns: 1fr;
  }
  .team__photo-frame img {
    height: clamp(260px, 72vw, 420px);
  }
  .team__bio { max-width: 100%; }

  /* Packages: single column */
  .packages__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Contact: stack columns, center */
  .contact__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-md);
  }
  .contact__col-label { display: block; }

  /* Quote form */
  .quote-form-wrap {
    padding: 36px 28px 40px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full { grid-column: 1; }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 72px;
    --space-lg: 44px;
  }

  .welcome__logo {
    width: clamp(160px, 60vw, 220px);
  }

  .testimonial {
    padding: 32px 24px;
  }

  .quote-form-wrap {
    padding: 28px 20px 32px;
  }
}

@media (max-width: 375px) {
  .container { padding: 0 var(--space-sm); }
  .btn-git, .btn-git-light { padding: 14px 36px; }
}
