/* Destination Florals Barbados — shared styles for site pages
   Tokens match the live site: paper/cream/olive/sage, Cormorant Garamond + Nunito Sans */

:root {
  --ink: #171814;
  --muted: #737064;
  --line: rgba(23, 24, 20, 0.14);
  --paper: #fffdf8;
  --cream: #f6f0e4;
  --cream-2: #ede3d0;
  --olive: #263724;
  --olive-deep: #142116;
  --sage: #dbe7d1;
  --sage-text: #56684a;
  --gold: #c49a4a;
  --coral: #c57d69;
  --plum: #6b4565;
  --whatsapp: #25d366;
  --shell: min(100% - 72px, 1360px);
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3, .brand { font-family: var(--font-display); font-weight: 500; }

.shell { width: var(--shell); margin: 0 auto; }

.eyebrow {
  margin-bottom: 14px;
  color: var(--sage-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- header ---------- */

.review-header {
  padding: 22px max(20px, 5vw);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.review-brand {
  font-family: var(--font-display);
  font-size: 24px;
  text-decoration: none;
  color: var(--ink);
}

.review-brand small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font: 10px var(--font-body);
  margin-top: 7px;
}

.review-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font: 13px var(--font-body);
}

.review-header nav a {
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.06em;
}

.review-header nav a:hover { color: var(--sage-text); }

.review-header a:focus-visible { outline: 2px solid #33573a; outline-offset: 5px; }

/* ---------- intro ---------- */

.portfolio-intro {
  max-width: 760px;
  margin: auto;
  text-align: center;
  padding: 64px 20px 40px;
}

.portfolio-intro h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
  margin: 14px 0 20px;
}

.portfolio-intro p { line-height: 1.7; }

.portfolio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 24px 0;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.button--dark {
  background: var(--olive);
  color: #fff;
  border-color: var(--olive);
}

.button--light {
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  border-color: rgba(255, 253, 248, 0.94);
}

.button:hover { opacity: 0.88; }

/* ---------- page hero (interior pages) ---------- */

.page-hero {
  background: var(--olive);
  color: #fff;
}

.page-hero__inner {
  width: var(--shell);
  margin: 0 auto;
  padding: 84px 0;
}

.page-hero .eyebrow { color: #f0d69a; }

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.04;
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.75;
}

.page-hero .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

/* ---------- sections ---------- */

.section { padding: 72px 0; }

.section--cream { background: var(--cream); }

.section--sage { background: var(--sage); }

.section-head {
  width: var(--shell);
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: end;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* ---------- tiers (Classic / Signature / Statement) ---------- */

.tier-grid {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.tier {
  padding: 34px 30px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

.tier strong {
  display: block;
  margin-bottom: 16px;
  color: var(--sage-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tier h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.tier p { color: var(--muted); font-size: 14px; line-height: 1.7; }

.tier .tier-price {
  margin: 16px 0 22px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier .button { margin-top: auto; }

/* ---------- two-column split ---------- */

.split {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.08;
}

.split p { color: var(--muted); font-size: 16px; line-height: 1.75; }

.split__image {
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
  overflow: hidden;
}

/* ---------- lists ---------- */

.plain-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.plain-list li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

/* ---------- local detail cards ---------- */

.detail-grid {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail {
  padding: 30px;
  background: var(--paper);
}

.detail strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ---------- FAQ ---------- */

.portfolio-copy {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px;
}

.portfolio-copy h2 {
  font-size: 32px;
  margin-bottom: 18px;
}

.portfolio-copy p, .portfolio-copy li { line-height: 1.8; margin-bottom: 15px; }

.portfolio-copy details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.portfolio-copy summary { cursor: pointer; font-weight: 600; }

.portfolio-copy details p { margin-top: 12px; color: var(--muted); }

/* ---------- area cross-links ---------- */

.area-links {
  width: var(--shell);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.area-links a {
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.area-links a:hover { border-color: var(--olive); color: var(--olive); }

/* ---------- map ---------- */

.map-embed {
  width: var(--shell);
  margin: 0 auto;
  border: 1px solid var(--line);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ---------- quote band ---------- */

.quote-band {
  padding: 74px 0;
  background: var(--olive);
  color: #fff;
  text-align: center;
}

.quote-band blockquote {
  width: min(100% - 72px, 920px);
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 54px);
  line-height: 1.22;
}

.quote-band p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- CTA band ---------- */

.cta-band {
  width: var(--shell);
  margin: 72px auto;
  padding: 60px 40px;
  background: var(--sage);
  text-align: center;
}

.cta-band h2 {
  max-width: 800px;
  margin: 0 auto 16px;
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1.05;
}

.cta-band p {
  max-width: 640px;
  margin: 0 auto 26px;
  color: #3e4b38;
  font-size: 16px;
}

/* ---------- portfolio grid ---------- */

.portfolio-grid {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 22px;
}

.portfolio-grid figure { margin: 0; }

.portfolio-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.portfolio-grid figcaption { padding: 14px 0; font-size: 14px; line-height: 1.6; }

.portfolio-grid small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--muted);
}

/* ---------- footer ---------- */

.footer {
  padding: 44px 0;
  background: #1f201d;
  color: rgba(255, 255, 255, 0.74);
}

.footer__grid {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 34px;
}

.footer h3 { color: #fff; font-size: 19px; }

.footer p { font-size: 14px; line-height: 1.7; }

.footer a, .footer span { display: block; margin-bottom: 9px; font-size: 14px; }

.footer a:hover { color: #fff; }

/* ---------- whatsapp float ---------- */

.whatsapp-float {
  position: fixed;
  left: 18px;
  bottom: 20px;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.38);
}

.whatsapp-float svg { width: 26px; height: 26px; fill: currentColor; }

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  :root { --shell: min(100% - 36px, 100%); }
  .section-head, .split { grid-template-columns: 1fr; gap: 28px; }
  .tier-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 12px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 24px, 100%); }
  .review-header { display: block; }
  .review-header nav { margin-top: 18px; gap: 14px; font-size: 12px; }
  .portfolio-intro { padding-top: 38px; }
  .portfolio-intro h1 { font-size: clamp(34px, 10vw, 44px); }
  .page-hero__inner { padding: 56px 0; }
  .page-hero .button-row { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .section { padding: 48px 0; }
  .portfolio-grid, .footer__grid { grid-template-columns: 1fr; }
  .cta-band { margin: 48px auto; padding: 40px 22px; }
  .quote-band { padding: 54px 0; }
  .quote-band blockquote { width: var(--shell); font-size: 30px; }
  .map-embed iframe { height: 280px; }
}
