/* ==========================================================================
   Central Perk Oran — Site styles
   Palette: caramel/amber brown, warm cream, teal accent, Central Perk orange
   ========================================================================== */

:root {
  --cp-cream: #f7f1e6;
  --cp-cream-2: #efe6d4;
  --cp-brown: #3b2419;
  --cp-brown-soft: #5c3a28;
  --cp-caramel: #a06a3b;
  --cp-amber: #d4932b;
  --cp-orange: #e7772b;
  --cp-teal: #2d7470;
  --cp-text: #2a1a11;
  --cp-text-muted: #7a5a49;
  --cp-white: #ffffff;
  --cp-shadow: 0 10px 30px rgba(59, 36, 25, 0.15);
  --cp-shadow-lg: 0 20px 40px rgba(59, 36, 25, 0.22);

  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Nunito Sans", "Inter", system-ui, -apple-system, sans-serif;
  --arabic: "Cairo", "Tajawal", system-ui, sans-serif;

  --max: 1200px;
  --radius: 14px;
  --radius-lg: 22px;

  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--cp-text);
  background: var(--cp-cream);
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body { font-family: var(--arabic); }

img { max-width: 100%; display: block; height: auto; }
a { color: var(--cp-caramel); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--cp-orange); }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--cp-brown); margin: 0 0 var(--s-2); font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.1; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); line-height: 1.2; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 var(--s-2); }
.muted { color: var(--cp-text-muted); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--s-3); }

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 241, 230, 0.93);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid rgba(59, 36, 25, 0.08);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-2) var(--s-3);
  max-width: var(--max); margin: 0 auto;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--cp-brown); font-family: var(--serif); font-weight: 700;
  font-size: 1.35rem; letter-spacing: 0.01em;
}
.brand .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--cp-orange);
  box-shadow: 0 0 0 3px rgba(231, 119, 43, 0.18);
}
.brand small {
  display: block; font-family: var(--sans); font-size: 0.66rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--cp-caramel);
  margin-top: 2px; font-weight: 700;
}

.nav {
  display: flex; align-items: center; gap: var(--s-3);
}
.nav a {
  color: var(--cp-brown); font-weight: 600; font-size: 0.97rem;
}
.nav a.active, .nav a:hover { color: var(--cp-orange); }

.lang-toggle {
  display: inline-flex; background: rgba(59, 36, 25, 0.06);
  border-radius: 999px; padding: 4px; gap: 2px;
}
.lang-toggle button {
  border: 0; background: transparent; color: var(--cp-brown-soft);
  font-weight: 700; font-size: 0.78rem; padding: 6px 12px;
  border-radius: 999px; cursor: pointer;
}
.lang-toggle button.active { background: var(--cp-brown); color: var(--cp-cream); }

.menu-toggle {
  display: none; background: transparent; border: 0; font-size: 1.6rem;
  color: var(--cp-brown); cursor: pointer; padding: 4px 8px;
}

@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; inset-inline: 0;
    background: var(--cp-cream); padding: var(--s-2) var(--s-3);
    flex-direction: column; align-items: stretch; gap: var(--s-2);
    border-bottom: 1px solid rgba(59,36,25,0.08);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: all 0.2s ease;
  }
  .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { padding: var(--s-1) 0; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--sans); font-weight: 700; font-size: 0.98rem;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--cp-orange); color: var(--cp-white);
  box-shadow: 0 8px 22px rgba(231, 119, 43, 0.35);
}
.btn-primary:hover { background: #d16321; color: white; box-shadow: 0 12px 26px rgba(231, 119, 43, 0.45); }

.btn-secondary {
  background: transparent; color: var(--cp-brown); border-color: var(--cp-brown);
}
.btn-secondary:hover { background: var(--cp-brown); color: var(--cp-cream); }

.btn-whatsapp {
  background: #25d366; color: white;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { background: #1faa52; color: white; }

.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* ========== HERO ========== */
.hero {
  position: relative; overflow: hidden;
  min-height: 78vh; display: flex; align-items: center;
  color: var(--cp-cream);
  background: linear-gradient(135deg, #2a1a11 0%, #3b2419 60%, #5c3a28 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("../images/friends-inspired-cafe.jpg");
  background-size: cover; background-position: center;
  opacity: 0.42; filter: saturate(1.1);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,26,17,0.15) 0%, rgba(42,26,17,0.75) 100%);
}
.hero .container { position: relative; z-index: 2; padding-block: var(--s-7); }
.hero .eyebrow {
  display: inline-block; background: rgba(247, 241, 230, 0.12);
  border: 1px solid rgba(247, 241, 230, 0.2); padding: 6px 14px;
  border-radius: 999px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--cp-amber);
  margin-bottom: var(--s-3);
}
.hero h1 { color: var(--cp-cream); max-width: 820px; }
.hero h1 .accent { color: var(--cp-amber); font-style: italic; }
.hero .lede { font-size: 1.15rem; max-width: 620px; color: rgba(247,241,230,0.85); margin-bottom: var(--s-4); }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-4); }
.hero .meta {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  font-size: 0.92rem; color: rgba(247,241,230,0.8);
}
.hero .meta strong { color: var(--cp-cream); font-weight: 700; }

/* ========== SECTIONS ========== */
section { padding: var(--s-7) 0; }
@media (max-width: 640px) { section { padding: var(--s-5) 0; } }

.section-title {
  text-align: center; margin-bottom: var(--s-5);
}
.section-title .kicker {
  display: inline-block; color: var(--cp-orange); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: var(--s-1);
}
.section-title h2 { margin-bottom: var(--s-2); }
.section-title p { max-width: 640px; margin: 0 auto; color: var(--cp-text-muted); }

/* ========== SIGNATURE SANDWICHES (Home) ========== */
.sandwich-strip {
  background: var(--cp-brown);
  color: var(--cp-cream);
}
.sandwich-strip .section-title h2 { color: var(--cp-cream); }
.sandwich-strip .section-title p { color: rgba(247,241,230,0.75); }
.sandwich-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s-3);
}
.sandwich-card {
  background: rgba(247,241,230,0.06); border: 1px solid rgba(247,241,230,0.1);
  padding: var(--s-3); border-radius: var(--radius);
  text-align: center; transition: transform 0.2s ease, border-color 0.2s ease;
}
.sandwich-card:hover { transform: translateY(-4px); border-color: var(--cp-amber); }
.sandwich-card .name {
  font-family: var(--serif); font-size: 1.45rem; color: var(--cp-amber);
  margin-bottom: 6px; font-weight: 600;
}
.sandwich-card .role {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(247,241,230,0.55);
  margin-bottom: var(--s-2);
}
.sandwich-card p { font-size: 0.92rem; color: rgba(247,241,230,0.78); margin: 0; }

/* ========== CONCEPT STRIP (home) ========== */
.concept-strip .wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5);
  align-items: center;
}
.concept-strip img {
  border-radius: var(--radius-lg); box-shadow: var(--cp-shadow-lg);
  aspect-ratio: 4 / 5; object-fit: cover;
}
@media (max-width: 800px) {
  .concept-strip .wrap { grid-template-columns: 1fr; gap: var(--s-3); }
  .concept-strip img { aspect-ratio: 16 / 10; }
}

/* ========== INFO / HOURS ========== */
.info-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-3);
}
.info-card {
  background: white; border-radius: var(--radius); padding: var(--s-3);
  box-shadow: var(--cp-shadow); border-top: 4px solid var(--cp-amber);
}
.info-card h3 {
  color: var(--cp-caramel); font-family: var(--sans);
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: var(--s-2); font-weight: 800;
}
.info-card ul { list-style: none; padding: 0; margin: 0; }
.info-card li {
  display: flex; justify-content: space-between; padding: 6px 0;
  font-size: 0.96rem;
}
.info-card li + li { border-top: 1px dashed rgba(59,36,25,0.1); }
.info-card li .day { color: var(--cp-text); font-weight: 600; }
.info-card li .time { color: var(--cp-text-muted); }

/* ========== EVENTS ========== */
.events-teaser .wrap {
  display: grid; grid-template-columns: 1.1fr 1fr;
  background: var(--cp-cream-2); border-radius: var(--radius-lg);
  overflow: hidden;
}
.events-teaser .copy { padding: var(--s-5); }
.events-teaser img { height: 100%; width: 100%; object-fit: cover; min-height: 320px; }
@media (max-width: 800px) {
  .events-teaser .wrap { grid-template-columns: 1fr; }
  .events-teaser .copy { padding: var(--s-4); }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: linear-gradient(180deg, var(--cp-cream) 0%, var(--cp-cream-2) 100%);
}
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-3);
}
.testimonial-card {
  background: white; padding: var(--s-3) var(--s-3) var(--s-4);
  border-radius: var(--radius); box-shadow: var(--cp-shadow);
  position: relative;
}
.testimonial-card::before {
  content: "\201C"; position: absolute; top: -10px; left: 20px;
  font-family: var(--serif); font-size: 5rem; color: var(--cp-amber);
  line-height: 1; opacity: 0.4;
}
html[dir="rtl"] .testimonial-card::before { left: auto; right: 20px; }
.testimonial-card .stars { color: var(--cp-amber); margin-bottom: var(--s-1); font-size: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  margin: 0 0 var(--s-2); font-size: 1.02rem; line-height: 1.55;
  color: var(--cp-text);
}
.testimonial-card cite {
  font-style: normal; color: var(--cp-text-muted); font-weight: 600;
  font-size: 0.88rem;
}

/* ========== MENU PAGE ========== */
.page-header {
  background: linear-gradient(180deg, #3b2419 0%, #5c3a28 100%);
  color: var(--cp-cream);
  padding: calc(var(--s-7) + var(--s-2)) 0 var(--s-6);
  text-align: center;
}
.page-header h1 { color: var(--cp-cream); margin-bottom: var(--s-2); }
.page-header h1 .accent { color: var(--cp-amber); font-style: italic; }
.page-header p { color: rgba(247,241,230,0.85); max-width: 640px; margin: 0 auto; }

.menu-section h2 { text-align: center; margin-bottom: var(--s-1); }
.menu-section > .container > p.intro { text-align: center; color: var(--cp-text-muted); max-width: 640px; margin: 0 auto var(--s-5); }

.menu-group { margin-bottom: var(--s-6); }
.menu-group-title {
  display: flex; align-items: center; gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.menu-group-title h2 {
  margin: 0; font-family: var(--serif); font-size: 1.9rem; color: var(--cp-brown);
}
.menu-group-title .line {
  flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--cp-caramel) 0 6px, transparent 6px 12px);
}

.menu-items {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--s-3);
}
.menu-item {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--cp-shadow); display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.menu-item:hover { transform: translateY(-4px); box-shadow: var(--cp-shadow-lg); }
.menu-item .photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cp-cream-2); }
.menu-item .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.menu-item:hover .photo img { transform: scale(1.05); }
.menu-item .body { padding: var(--s-3); display: flex; flex-direction: column; flex: 1; }
.menu-item .head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-2); margin-bottom: 6px; }
.menu-item h3 { margin: 0; color: var(--cp-brown); font-size: 1.22rem; }
.menu-item .price { font-family: var(--serif); font-size: 1.1rem; color: var(--cp-orange); font-weight: 600; white-space: nowrap; }
.menu-item .role {
  display: inline-block; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cp-caramel); margin-bottom: var(--s-1);
}
.menu-item p { color: var(--cp-text-muted); font-size: 0.95rem; margin: 0; }

/* ========== AMBIANCE PAGE ========== */
.concept-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5);
  align-items: start;
}
.concept-story.reverse { direction: rtl; }
.concept-story.reverse > * { direction: ltr; }
html[dir="rtl"] .concept-story.reverse { direction: ltr; }
html[dir="rtl"] .concept-story.reverse > * { direction: rtl; }

.concept-story img { border-radius: var(--radius-lg); box-shadow: var(--cp-shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.concept-story h2 { margin-top: 0; }
@media (max-width: 800px) {
  .concept-story { grid-template-columns: 1fr; }
  .concept-story.reverse { direction: ltr; }
  .concept-story img { aspect-ratio: 16/10; }
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-2);
}
.gallery-grid img {
  aspect-ratio: 1/1; object-fit: cover; width: 100%;
  border-radius: var(--radius); box-shadow: var(--cp-shadow);
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.02); }

/* ========== EVENTS PAGE ========== */
.event-calendar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-3);
}
.event-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--cp-shadow); border-left: 5px solid var(--cp-orange);
}
html[dir="rtl"] .event-card { border-left: 0; border-right: 5px solid var(--cp-orange); }
.event-card .photo { aspect-ratio: 16/9; overflow: hidden; }
.event-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.event-card .body { padding: var(--s-3); }
.event-card .day {
  display: inline-block; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cp-orange); margin-bottom: var(--s-1);
}
.event-card h3 { margin: 0 0 8px; color: var(--cp-brown); font-size: 1.22rem; }
.event-card p { color: var(--cp-text-muted); font-size: 0.95rem; margin: 0; }
.event-card .time { font-weight: 700; color: var(--cp-brown-soft); margin-top: var(--s-2); display: block; font-size: 0.92rem; }

/* ========== CONTACT PAGE ========== */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5);
}
@media (max-width: 800px) { .contact-layout { grid-template-columns: 1fr; gap: var(--s-4); } }

.contact-card {
  background: white; border-radius: var(--radius); padding: var(--s-4);
  box-shadow: var(--cp-shadow);
}
.contact-card h3 { margin-top: 0; }
.contact-list { list-style: none; padding: 0; margin: 0 0 var(--s-3); }
.contact-list li {
  display: flex; gap: var(--s-2); padding: var(--s-2) 0;
  border-bottom: 1px dashed rgba(59,36,25,0.08);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .label { font-weight: 700; color: var(--cp-caramel); min-width: 110px; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-list .value { color: var(--cp-text); }
.contact-list a { color: var(--cp-brown-soft); }

.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s-2); }
.form-row label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cp-caramel);
}
.form-row input, .form-row select, .form-row textarea {
  padding: 12px 14px; border: 1.5px solid rgba(59,36,25,0.15);
  border-radius: 10px; font-family: var(--sans); font-size: 1rem;
  background: var(--cp-cream); color: var(--cp-text); transition: border-color 0.2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--cp-orange); background: white;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }
@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }

.map-embed {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--cp-shadow);
  min-height: 320px; border: 0;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ========== FLOATING WHATSAPP ========== */
.fab-whatsapp {
  position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: white;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
}
.fab-whatsapp:hover { transform: scale(1.05); color: white; }
.fab-whatsapp svg { width: 30px; height: 30px; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--cp-brown);
  color: rgba(247,241,230,0.82);
  padding: var(--s-6) 0 var(--s-3);
}
.site-footer .wrap {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-4);
}
@media (max-width: 800px) { .site-footer .wrap { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-footer .wrap { grid-template-columns: 1fr; } }

.site-footer h4 {
  font-family: var(--sans); font-size: 0.78rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cp-amber); margin: 0 0 var(--s-2); font-weight: 800;
}
.site-footer p { color: rgba(247,241,230,0.7); font-size: 0.92rem; margin: 0 0 var(--s-1); }
.site-footer a { color: rgba(247,241,230,0.82); }
.site-footer a:hover { color: var(--cp-amber); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 3px 0; font-size: 0.92rem; }
.site-footer .brand { color: var(--cp-cream); font-size: 1.3rem; }
.site-footer .brand small { color: var(--cp-amber); }
.site-footer .tagline { margin-top: var(--s-1); font-style: italic; max-width: 260px; }
.site-footer .legal {
  margin-top: var(--s-4); padding-top: var(--s-3);
  border-top: 1px solid rgba(247,241,230,0.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-2);
  font-size: 0.82rem; color: rgba(247,241,230,0.5);
}

/* ========== CONTACT PAGE — extended ========== */
.contact-form-wrap { display: flex; }
.form-card {
  background: white; border-radius: var(--radius); padding: var(--s-5);
  box-shadow: var(--cp-shadow);
  width: 100%;
}
.form-card h2 { margin-top: var(--s-1); font-size: 1.8rem; }
.form-card .muted { color: var(--cp-text-muted); }

.contact-block {
  padding: var(--s-3) 0;
  border-bottom: 1px dashed rgba(59,36,25,0.12);
}
.contact-block:first-child { padding-top: 0; }
.contact-block:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-block h3 { margin: 4px 0 8px; font-size: 1.35rem; color: var(--cp-brown); }
.contact-block h3 a { color: inherit; }
.contact-block p { margin: 0 0 10px; color: var(--cp-text); font-size: 0.95rem; }
.contact-block .muted { color: var(--cp-text-muted); font-size: 0.88rem; }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex; justify-content: space-between; gap: var(--s-2);
  padding: 8px 0; border-bottom: 1px solid rgba(59,36,25,0.06);
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list strong { color: var(--cp-brown); }
.hours-list span { color: var(--cp-text-muted); font-variant-numeric: tabular-nums; }

.social-list { list-style: none; padding: 0; margin: 0 0 10px; }
.social-list li { padding: 6px 0; font-size: 0.95rem; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s-3); }
.field label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cp-caramel);
}
.field input, .field select, .field textarea {
  padding: 12px 14px; border: 1.5px solid rgba(59,36,25,0.15);
  border-radius: 10px; font-family: var(--sans); font-size: 1rem;
  background: var(--cp-cream); color: var(--cp-text);
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cp-orange); background: white;
}
.field textarea { resize: vertical; min-height: 96px; }
.field-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--s-2);
}
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }

.btn-wa {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; background: #25d366; border-color: #25d366; color: white;
  width: 100%; padding: 14px 18px; font-size: 1.02rem;
}
.btn-wa:hover { background: #1fb957; border-color: #1fb957; color: white; transform: translateY(-1px); }
.btn-wa .wa-icon { width: 22px; height: 22px; }

.btn-ghost {
  background: transparent; color: var(--cp-brown);
  border: 1.5px solid rgba(59,36,25,0.2);
}
.btn-ghost:hover { background: var(--cp-brown); color: var(--cp-cream); border-color: var(--cp-brown); }

.form-footnote { margin-top: var(--s-3); font-size: 0.82rem; line-height: 1.5; }

.map-section { margin-top: var(--s-5); }
.map-actions {
  margin-top: var(--s-3); display: flex; flex-wrap: wrap;
  gap: var(--s-2); justify-content: center;
}

.cta-strip {
  background: linear-gradient(135deg, var(--cp-brown) 0%, #2a1912 100%);
  color: var(--cp-cream); padding: var(--s-6) 0;
  text-align: center; margin-top: var(--s-6);
}
.cta-strip h2 {
  color: var(--cp-amber); font-style: italic; font-size: 1.85rem;
  max-width: 780px; margin: 0 auto var(--s-2);
}
.cta-strip p { color: rgba(247,241,230,0.85); max-width: 620px; margin: 0 auto; }

.muted { color: var(--cp-text-muted); }

/* ========== LOAD-IN ANIMATION ========== */
@media (prefers-reduced-motion: no-preference) {
  .fade-up { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-up.in { opacity: 1; transform: translateY(0); }
}
