:root {
  --ink: #1f1c18;
  --muted: #6f675e;
  --line: #d8d0c5;
  --paper: #f7f2ea;
  --soft: #ebe2d6;
  --accent: #8e674a;
  --accent-dark: #3d2d24;
  --white: #fffaf3;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 84px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(247, 242, 234, 0.88);
  border-bottom: 1px solid rgba(216, 208, 197, 0.7);
  backdrop-filter: blur(16px);
}

.brand {
  grid-column: 2;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: 0;
  text-align: center;
}

.site-nav {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 12px;
  text-transform: uppercase;
}

.nav-cta,
.button,
.contact-form button,
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 13px 22px;
  text-transform: uppercase;
  font-size: 12px;
  background: transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta:hover,
.button:hover,
.contact-form button:hover,
.whatsapp-link:hover {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.hero {
  padding: 26px clamp(18px, 4vw, 56px) 86px;
  overflow: hidden;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 2vw, 28px);
  height: clamp(180px, 28vw, 420px);
  position: relative;
  z-index: 1;
}

.hero-strip img,
.portrait-frame,
.statement-media,
.package-card img,
.about-image,
.gallery-grid img,
.grace img,
.conversation img {
  filter: saturate(0.84) contrast(0.96);
}

.hero-copy {
  max-width: 1160px;
  margin: clamp(42px, 6vw, 82px) auto clamp(42px, 7vw, 84px);
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-copy p,
.section-label,
.contact-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  text-transform: lowercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 7.1vw, 104px);
  line-height: 0.98;
  max-width: 1120px;
  margin-inline: auto;
}

h2 {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
}

h3 {
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.08;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(240px, 0.9fr) minmax(180px, 0.72fr);
  align-items: center;
  gap: clamp(22px, 4vw, 70px);
  max-width: 1160px;
  margin: 0 auto;
}

.portrait-frame {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.portrait-frame.offset {
  margin-top: 86px;
}

.intro-text {
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(21px, 2.5vw, 36px);
  line-height: 1.22;
  text-align: center;
}

.statement,
.about,
.grace,
.conversation,
.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 6vw, 86px);
  border-top: 1px solid var(--line);
}

.statement-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.statement-copy,
.about-copy,
.grace div,
.conversation div,
.contact-copy {
  max-width: 620px;
}

.statement-copy p,
.about-copy p,
.grace p,
.conversation p,
.contact-copy span,
.faq p,
.testimonials p {
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  text-transform: uppercase;
}

.packages,
.gallery,
.testimonials,
.faq {
  padding: clamp(76px, 10vw, 128px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.packages {
  text-align: center;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 42px);
}

.package-card {
  display: grid;
  gap: 22px;
  text-align: center;
}

.package-card img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.package-card h3 {
  font-size: clamp(31px, 4vw, 58px);
  text-transform: lowercase;
}

.package-card p {
  margin: -12px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 clamp(18px, 2.5vw, 36px);
  max-width: 1220px;
  margin: clamp(42px, 6vw, 72px) auto 0;
  text-align: left;
  border-top: 1px solid var(--line);
}

.price-list a {
  display: grid;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease;
}

.price-list a:hover {
  color: var(--ink);
}

.price-list strong {
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}

.about {
  background: var(--soft);
}

.about-image {
  aspect-ratio: 0.84;
  overflow: hidden;
}

.gallery h2,
.faq h2 {
  margin-bottom: clamp(28px, 4vw, 54px);
  text-transform: lowercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 42px);
}

.gallery-grid a {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.gallery-grid img {
  aspect-ratio: 4 / 5;
}

.grace img,
.conversation img {
  aspect-ratio: 4 / 5;
}

.conversation {
  background: var(--accent-dark);
  color: var(--white);
}

.conversation p {
  color: rgba(255, 250, 243, 0.76);
}

.conversation .button {
  display: inline-block;
  margin-top: 18px;
  border-color: var(--white);
}

.conversation .button:hover {
  background: var(--white);
  color: var(--accent-dark);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 70px);
}

.testimonials article {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.testimonials h3 {
  font-size: clamp(26px, 2.7vw, 42px);
}

.testimonials span {
  color: var(--muted);
  font-size: 13px;
}

.contact {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--ink);
}

.contact-form button {
  justify-self: start;
  cursor: pointer;
}

.whatsapp-link {
  justify-self: start;
  border-color: var(--accent);
  color: var(--accent-dark);
}

.form-status {
  min-height: 24px;
  color: var(--accent);
  font-size: 14px;
}

.faq {
  max-width: 1040px;
  margin: 0 auto;
  border-top: 0;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 40px);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: end;
  padding: clamp(44px, 7vw, 82px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.footer h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.footer p,
.footer span {
  color: rgba(255, 250, 243, 0.68);
}

.footer nav {
  display: grid;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
}

.admin-body {
  background: var(--paper);
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 80px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.admin-header p,
.admin-note {
  color: var(--muted);
  margin: 0;
}

.admin-header h1 {
  font-size: clamp(42px, 7vw, 82px);
}

.admin-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-header button,
.admin-panel button {
  cursor: pointer;
  font-family: inherit;
}

.admin-note {
  margin: 22px 0;
  max-width: 760px;
}

.admin-panel {
  display: grid;
  gap: 18px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.admin-panel h2 {
  font-size: clamp(28px, 4vw, 52px);
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.5);
}

.admin-row label,
.admin-panel label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.admin-row input,
.admin-panel textarea,
.admin-panel select {
  width: 100%;
  border: 1px solid var(--line);
  padding: 11px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.typography-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-row button,
.admin-list > button,
.admin-panel > button {
  border: 1px solid var(--ink);
  padding: 11px 14px;
  background: transparent;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 12px;
}

.admin-status {
  display: block;
  min-height: 28px;
  color: var(--accent);
}

/* Canva garden-inspired redesign */
:root {
  --paper: #ede9dd;
  --soft: #ded2bf;
  --ink: #2d2b25;
  --muted: #736a5d;
  --line: #c9bda9;
  --accent: #76614c;
  --accent-dark: #3a3128;
  --white: #faf1e1;
}

.garden-header {
  position: fixed;
  inset: 0 0 auto;
  min-height: 92px;
  padding-inline: clamp(28px, 5vw, 78px);
  background: transparent;
  border-bottom: 0;
  color: var(--white);
  backdrop-filter: none;
}

.garden-header .brand {
  grid-column: 1;
  justify-self: start;
  font-size: clamp(19px, 2vw, 29px);
  letter-spacing: 0.28em;
}

.garden-header .site-nav {
  gap: clamp(14px, 2.2vw, 34px);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.garden-header .nav-cta {
  border-color: currentColor;
}

.garden-hero {
  min-height: 100vh;
  padding: 0;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
}

.garden-hero .hero-strip {
  position: absolute;
  inset: 0;
  display: block;
  gap: 0;
  height: 100%;
  z-index: 0;
}

.garden-hero .hero-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(42, 32, 25, 0.34), rgba(42, 32, 25, 0.58)),
    radial-gradient(circle at center, rgba(45, 43, 37, 0.08), rgba(45, 43, 37, 0.5));
}

.garden-hero .hero-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.95);
}

.garden-hero .hero-strip img:not(:first-child) {
  display: none;
}

.hero-brand-mark {
  position: absolute;
  left: clamp(34px, 6vw, 86px);
  bottom: clamp(42px, 7vw, 78px);
  z-index: 2;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.34em;
}

.hero-story-line {
  position: absolute;
  right: clamp(34px, 6vw, 86px);
  bottom: clamp(42px, 7vw, 78px);
  z-index: 2;
  max-width: 360px;
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.garden-hero-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(920px, calc(100% - 36px));
  text-align: center;
  padding-top: 72px;
}

.garden-hero-overlay p,
.garden-process p,
.section-heading p,
.split-copy p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.garden-hero-overlay h1 {
  font-size: clamp(98px, 18vw, 246px);
  line-height: 0.74;
  color: var(--white);
}

.garden-hero-overlay span {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 72px);
  line-height: 1;
  text-transform: uppercase;
}

.light-button {
  margin-top: 22px;
  border-color: var(--white);
  color: var(--white);
}

.light-button:hover {
  background: var(--white);
  color: var(--ink);
}

.garden-intro {
  display: grid;
  grid-template-columns: 0.65fr 0.9fr 0.65fr;
  gap: clamp(22px, 5vw, 78px);
  align-items: center;
  min-height: 100vh;
  padding: clamp(80px, 10vw, 128px) clamp(22px, 7vw, 110px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.garden-intro img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.95);
}

.intro-title {
  text-align: center;
}

.intro-title span {
  display: block;
  font-family: var(--sans);
  font-size: clamp(23px, 3vw, 42px);
  text-transform: uppercase;
}

.intro-title h2,
.section-heading h2,
.split-copy h2,
.garden-process h2,
.garden-contact h2,
.garden-faq h2 {
  font-size: clamp(58px, 9vw, 132px);
  line-height: 0.88;
}

.garden-intro p {
  grid-column: 1 / -1;
  max-width: 860px;
  margin: clamp(28px, 5vw, 64px) auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 25px);
  text-align: center;
}

.garden-product-strip,
.garden-gallery,
.garden-process,
.garden-faq {
  min-height: 100vh;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 6vw, 86px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 920px;
  margin: 0 auto clamp(34px, 6vw, 72px);
  text-align: center;
}

.garden-product-strip .package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 32px);
}

.garden-product-strip .package-card {
  gap: 16px;
}

.garden-product-strip .package-card img {
  aspect-ratio: 2 / 3;
}

.garden-product-strip .package-card h3 {
  font-family: var(--sans);
  font-size: clamp(15px, 1.8vw, 22px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.garden-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  min-height: 100vh;
  padding: clamp(84px, 10vw, 142px) clamp(18px, 7vw, 110px);
  background: #d9cbb8;
}

.garden-split img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.95);
}

.split-copy span {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
}

.garden-gallery .gallery-grid img {
  aspect-ratio: 2 / 3;
}

.garden-process {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) 1fr;
  gap: clamp(28px, 7vw, 110px);
  min-height: 100vh;
}

.garden-process ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.garden-process li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
}

.garden-process li span {
  color: var(--ink);
  font-family: var(--serif);
}

.garden-contact {
  background: var(--accent-dark);
  color: var(--white);
  border-top: 0;
}

.garden-contact .contact-copy span,
.garden-contact label,
.garden-contact .form-status {
  color: rgba(250, 241, 225, 0.78);
}

.garden-contact input,
.garden-contact textarea {
  color: var(--white);
  border-color: rgba(250, 241, 225, 0.35);
}

.garden-contact button,
.garden-contact .whatsapp-link {
  border-color: var(--white);
  color: var(--white);
}

.garden-footer {
  grid-template-columns: 1fr auto;
  background: #241f1a;
}

.garden-footer h2 {
  letter-spacing: 0.18em;
}

@media (max-width: 900px) {
  .garden-header {
    position: sticky;
    background: rgba(45, 43, 37, 0.9);
  }

  .garden-hero .hero-strip {
    grid-template-columns: 1fr 1fr;
  }

  .garden-intro,
  .garden-split,
  .garden-process {
    grid-template-columns: 1fr;
  }

  .garden-intro p {
    grid-column: auto;
  }

  .garden-product-strip .package-grid,
  .price-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .garden-hero-overlay h1 {
    font-size: clamp(74px, 25vw, 104px);
  }

  .garden-hero-overlay span {
    font-size: clamp(24px, 8vw, 38px);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 70px;
  }

  .brand {
    grid-column: 1;
  }

  .menu-toggle {
    grid-column: 3;
    display: grid;
    gap: 6px;
    width: 42px;
    border: 0;
    background: transparent;
    padding: 10px;
  }

  .menu-toggle span {
    height: 1px;
    background: var(--ink);
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    grid-column: 1 / -1;
    display: none;
    justify-items: center;
    gap: 22px;
    padding: 30px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .hero-strip img {
    aspect-ratio: 1 / 1;
  }

  .intro-grid,
  .statement,
  .about,
  .grace,
  .conversation,
  .contact,
  .testimonials,
  .footer {
    grid-template-columns: 1fr;
  }

  .portrait-frame.offset {
    margin-top: 0;
  }

  .intro-text {
    order: -1;
  }

  .package-grid,
  .gallery-grid,
  .price-list {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: start;
  }

  .admin-header,
  .admin-row {
    grid-template-columns: 1fr;
  }

  .admin-header {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 16px;
  }

  .hero-copy {
    margin: 34px auto 34px;
  }

  h1 {
    font-size: clamp(38px, 14vw, 66px);
    line-height: 1.02;
  }

  .statement,
  .about,
  .grace,
  .conversation,
  .contact,
  .packages,
  .gallery,
  .testimonials,
  .faq {
    padding-left: 18px;
    padding-right: 18px;
  }
}
