:root {
  --paper: #f5efe5;
  --paper-soft: #fbf7ef;
  --ink: #35251b;
  --muted: #715e4c;
  --gold: #b98747;
  --gold-deep: #9c6a33;
  --line: rgba(91, 63, 41, 0.18);
  --shadow: 0 28px 80px rgba(38, 29, 20, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 35%),
    linear-gradient(135deg, #eee4d7 0%, #f9f3ea 48%, #d7c8b8 100%);
  color: var(--ink);
  font-family: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(100deg, transparent 0 44%, rgba(120, 82, 45, 0.18) 45%, transparent 47%),
    linear-gradient(12deg, transparent 0 58%, rgba(255, 255, 255, 0.58) 59%, transparent 61%);
  background-size: 380px 380px;
}

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

img {
  display: block;
  width: 100%;
}

.site-page {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35)),
    var(--paper);
}

.hero {
  min-height: 445px;
  position: relative;
  isolation: isolate;
  color: #fffaf2;
  background-image:
    linear-gradient(90deg, rgba(15, 11, 7, 0.86), rgba(15, 11, 7, 0.28) 46%, rgba(15, 11, 7, 0.52)),
    url("assets/hero.jpg");
  background-position: center;
  background-size: cover;
}

.nav {
  position: relative;
  z-index: 2;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 78px;
}

.brand {
  display: grid;
  gap: 1px;
  color: #e2b87e;
  line-height: 1;
}

.brand-script,
.signature,
.script {
  font-family: "Brush Script MT", "Segoe Script", cursive;
}

.brand-script {
  font-size: 38px;
  letter-spacing: 0.01em;
}

.brand-small {
  color: #e9d7be;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  opacity: 0.92;
}

.nav-links a:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #d9aa70;
}

.hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-right: 78px;
}

.hero-content {
  width: 440px;
  padding: 54px 0 72px 78px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(52px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.ornament {
  display: block;
  width: 170px;
  height: 1px;
  margin: 27px 0 24px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero p {
  width: 295px;
  margin: 0 0 28px;
  color: rgba(255, 250, 242, 0.88);
  font-size: 15px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
}

.booking-card {
  display: none;
  width: 360px;
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(190, 145, 90, 0.28);
  border-radius: 14px;
  background: rgba(255, 250, 241, 0.93);
  box-shadow: 0 22px 45px rgba(15, 11, 7, 0.24);
  color: var(--ink);
}

.booking-card h2 {
  margin-bottom: 18px;
  font-size: 32px;
  line-height: 1;
}

.booking-card label {
  display: grid;
  gap: 6px;
  margin-bottom: 11px;
}

.booking-card label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.booking-card input,
.booking-card select {
  width: 100%;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(91, 63, 41, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}

.booking-card .button {
  width: 100%;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fffaf4;
  background: linear-gradient(135deg, #bd8040, #9f6932);
}

.button.ghost {
  border: 1px solid rgba(225, 187, 133, 0.72);
  color: #fffaf4;
  background: rgba(22, 15, 10, 0.28);
}

.section {
  padding: 72px 78px;
  border-bottom: 1px solid var(--line);
}

.about {
  display: grid;
  grid-template-columns: 345px 1fr;
  gap: 90px;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 24px -42px -24px 42px;
  z-index: 0;
  border: 1px solid rgba(183, 135, 71, 0.38);
  border-radius: 46% 46% 6px 6px;
}

.about-photo img {
  position: relative;
  z-index: 1;
  height: 320px;
  object-fit: cover;
  border-radius: 48% 48% 6px 6px;
}

.about-copy {
  max-width: 480px;
}

.eyebrow {
  color: var(--gold);
  font-size: 30px;
}

.about h2 {
  margin-top: -4px;
  font-size: 58px;
  line-height: 1;
}

.about p {
  max-width: 450px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.signature {
  display: inline-block;
  margin-top: 8px;
  color: #735943;
  font-size: 31px;
}

.section-heading {
  text-align: center;
}

.section-heading h2,
.gallery h2 {
  color: var(--ink);
  font-size: 48px;
  line-height: 1;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.tiny-leaf {
  display: block;
  color: var(--gold);
  font-size: 20px;
}

.portfolio {
  padding-top: 54px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 38px;
}

.portfolio-card {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  background: #1e160f;
}

.portfolio-card img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: saturate(0.93);
  transition: transform 0.3s ease;
}

.portfolio-card:hover img {
  transform: scale(1.04);
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(12, 8, 5, 0.84));
}

.portfolio-card div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 1;
  color: #fffaf2;
}

.portfolio-card h3 {
  margin-bottom: 8px;
  font-size: 31px;
}

.portfolio-card p {
  max-width: 220px;
  margin: 0 0 10px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 13px;
  line-height: 1.5;
}

.process {
  padding-top: 34px;
  padding-bottom: 50px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 34px;
}

.steps article {
  min-height: 150px;
  padding: 0 46px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.steps article:last-child {
  border-right: 0;
}

.step-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 10px;
  border: 1px solid rgba(183, 135, 71, 0.72);
  border-radius: 50%;
  color: var(--gold-deep);
  font-size: 21px;
}

.steps strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.steps h3 {
  margin-top: 2px;
  font-size: 20px;
}

.steps p {
  margin: 8px auto 0;
  max-width: 210px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.gallery {
  padding: 30px 0 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.gallery h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.testimonials {
  padding-top: 52px;
  padding-bottom: 54px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 38px;
}

blockquote {
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

blockquote span {
  display: block;
  height: 22px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 0.6;
}

blockquote p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

cite {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: normal;
}

.faq {
  padding-top: 34px;
  padding-bottom: 42px;
}

.faq .section-heading h2 {
  font-size: 34px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 44px;
  margin: 24px auto 0;
  max-width: 840px;
}

details {
  border: 1px solid rgba(91, 63, 41, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--muted);
  font-size: 12px;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 13px 18px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "⌄";
  float: right;
}

details[open] summary::after {
  content: "⌃";
}

details p {
  margin: 0;
  padding: 0 18px 16px;
  line-height: 1.6;
}

.final-cta {
  min-height: 205px;
  display: flex;
  align-items: center;
  padding: 36px 78px;
  color: #fff7eb;
  background-image:
    linear-gradient(90deg, rgba(42, 26, 14, 0.88), rgba(42, 26, 14, 0.28)),
    url("assets/cta.jpg");
  background-position: center;
  background-size: cover;
}

.final-cta h2 {
  font-size: 42px;
  line-height: 0.95;
}

.final-cta p {
  max-width: 280px;
  margin: 12px 0 22px;
  color: rgba(255, 247, 235, 0.86);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 860px) {
  body {
    background: var(--paper);
  }

  .nav,
  .section,
  .final-cta {
    padding-left: 28px;
    padding-right: 28px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 690px;
    background-image:
      linear-gradient(180deg, rgba(13, 9, 6, 0.58) 0%, rgba(13, 9, 6, 0.44) 45%, rgba(13, 9, 6, 0.82) 100%),
      url("assets/hero.jpg");
    background-position: 58% top;
  }

  .nav {
    height: 86px;
    align-items: flex-start;
    padding-top: 24px;
  }

  .brand-script {
    font-size: 28px;
  }

  .brand-small {
    font-size: 8px;
    letter-spacing: 0.34em;
  }

  .hero-inner {
    display: block;
    padding: 0 24px 34px;
  }

  .hero-content {
    width: auto;
    padding: 42px 0 0;
  }

  .hero h1 {
    max-width: 330px;
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.03;
  }

  .ornament,
  .hero p,
  .hero-actions {
    display: none;
  }

  .booking-card {
    display: block;
    width: min(100%, 430px);
    margin: 34px auto 0;
    padding: 24px;
    border-radius: 14px;
  }

  .booking-card h2 {
    font-size: 29px;
  }

  .booking-card label span {
    display: none;
  }

  .booking-card input,
  .booking-card select {
    min-height: 46px;
    font-size: 14px;
  }

  .about,
  .portfolio-grid,
  .steps,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .about {
    gap: 22px;
    grid-template-columns: 150px 1fr;
    padding-top: 44px;
    align-items: start;
  }

  .about-photo::after {
    inset: 14px -18px -14px 18px;
  }

  .about-photo img {
    height: 160px;
  }

  .eyebrow {
    display: none;
  }

  .about h2 {
    font-size: 30px;
  }

  .about-copy p {
    font-size: 12px;
    line-height: 1.65;
  }

  .about-copy p + p {
    display: none;
  }

  .signature {
    font-size: 24px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .portfolio {
    padding-top: 20px;
  }

  .portfolio-grid {
    gap: 10px;
    margin-top: 24px;
  }

  .portfolio-card {
    min-height: 112px;
    display: grid;
    grid-template-columns: 132px 1fr;
    border: 1px solid rgba(91, 63, 41, 0.1);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.38);
  }

  .portfolio-card::after {
    display: none;
  }

  .portfolio-card img {
    height: 112px;
    min-height: 112px;
  }

  .portfolio-card div {
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 38px 14px 16px;
    color: var(--ink);
  }

  .portfolio-card h3 {
    margin-bottom: 6px;
    font-size: 24px;
  }

  .portfolio-card p {
    color: var(--muted);
    font-size: 12px;
  }

  .portfolio-card div > span {
    position: absolute;
    right: 16px;
    color: var(--gold-deep);
    font-size: 24px;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
  }

  .steps article {
    padding: 0 8px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    min-height: auto;
  }

  .steps article:last-child {
    border-right: 0;
  }

  .step-icon {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .steps strong {
    font-size: 20px;
  }

  .steps h3 {
    font-size: 14px;
  }

  .steps p {
    font-size: 10px;
  }

  .gallery {
    padding-top: 12px;
  }

  .gallery h2 {
    font-size: 24px;
  }

  .gallery img {
    height: 122px;
  }

  .testimonials {
    padding-top: 34px;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    gap: 12px;
    overflow-x: auto;
    margin-inline: -28px;
    padding: 0 28px 8px;
  }

  blockquote {
    min-width: 170px;
    padding: 16px;
    border: 1px solid rgba(91, 63, 41, 0.1);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.38);
  }

  blockquote p {
    font-size: 10px;
  }

  cite {
    font-size: 11px;
  }

  .faq-grid {
    gap: 8px;
  }

  .final-cta {
    min-height: 190px;
    align-items: flex-end;
    background-position: center;
  }

  .final-cta h2 {
    font-size: 30px;
  }

  .final-cta .button {
    min-height: 40px;
    padding-inline: 18px;
  }
}

@media (min-width: 861px) {
  .booking-card {
    display: none;
  }
}
