:root {
  --cream: #fbf5ec;
  --linen: #f1e3d3;
  --sand: #dcc7af;
  --clay: #a86f61;
  --rose: #8f3f45;
  --brown: #4d372b;
  --ink: #211b17;
  --muted: #74645b;
  --white: #fffaf4;
  --shadow: 0 24px 70px rgba(72, 46, 33, 0.14);
  --soft-shadow: 0 16px 42px rgba(72, 46, 33, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 64px);
  background: rgba(251, 245, 236, 0.9);
  border-bottom: 1px solid rgba(77, 55, 43, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brown);
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(143, 63, 69, 0.28);
  border-radius: 50%;
  color: var(--rose);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--rose);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(77, 55, 43, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--brown);
}

.section-pad {
  padding: clamp(76px, 9vw, 124px) clamp(20px, 4vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
  min-height: calc(100vh - 75px);
  background:
    radial-gradient(circle at 10% 15%, rgba(143, 63, 69, 0.1), transparent 32%),
    linear-gradient(135deg, #fff8ef 0%, #f3e3d3 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  font-size: clamp(48px, 7vw, 88px);
}

h2 {
  font-size: clamp(36px, 5vw, 60px);
}

h3 {
  font-size: 27px;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-text {
  max-width: 650px;
  margin-top: 26px;
  font-size: clamp(17px, 1.7vw, 20px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--rose);
  color: #fffaf7;
  box-shadow: 0 14px 28px rgba(143, 63, 69, 0.2);
}

.btn.secondary {
  background: rgba(255, 250, 244, 0.78);
  border-color: rgba(77, 55, 43, 0.16);
  color: var(--brown);
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  width: min(100%, 520px);
  margin-left: auto;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  object-position: 52% 44%;
  border: 10px solid rgba(255, 250, 244, 0.88);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: clamp(10px, 3vw, 34px);
  bottom: 24px;
  display: grid;
  gap: 2px;
  max-width: 280px;
  padding: 16px 18px;
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid rgba(77, 55, 43, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
}

.hero-note strong {
  color: var(--brown);
}

.hero-note span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section-intro {
  max-width: 760px;
}

.section-intro.centered {
  margin: 0 auto 42px;
  text-align: center;
}

.section-intro.centered p:not(.eyebrow) {
  max-width: 690px;
  margin: 16px auto 0;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: end;
  margin-top: 34px;
}

.about-copy {
  display: grid;
  gap: 20px;
  max-width: 820px;
}

.about-copy .btn,
.custom-copy .btn {
  justify-self: start;
  margin-top: 8px;
}

.about-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 22px;
  background: #f5eadf;
  border: 1px solid rgba(77, 55, 43, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.about-panel span {
  padding: 22px 14px;
  background: rgba(255, 250, 244, 0.72);
  border-radius: var(--radius);
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}

.gallery {
  background: linear-gradient(180deg, var(--cream), #f7eee4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(260px, 27vw);
  gap: clamp(16px, 2.2vw, 28px);
}

.art-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.art-card.tall {
  grid-row: span 2;
  grid-column: span 2;
}

.art-card.wide {
  grid-column: span 2;
}

.art-card img {
  width: 100%;
  height: 100%;
  background: #efe1d1;
  object-fit: contain;
  transition: transform 420ms ease;
}

.art-card:hover img {
  transform: scale(1.025);
}

.art-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  background: rgba(255, 250, 244, 0.88);
  border-radius: var(--radius);
  color: var(--brown);
  font-size: 13px;
  font-weight: 700;
}

.custom {
  background: var(--white);
}

.custom-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: clamp(24px, 4vw, 54px);
  background: linear-gradient(135deg, #f7eadf, #fff8ef);
  border: 1px solid rgba(77, 55, 43, 0.09);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.custom-copy {
  display: grid;
  gap: 18px;
}

.stars {
  color: var(--rose);
  font-weight: 700;
}

.small-line {
  color: var(--brown);
  font-weight: 600;
}

.custom-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.custom-image img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: center;
}

.custom-image span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 13px 15px;
  background: rgba(255, 250, 244, 0.9);
  border-radius: var(--radius);
  color: var(--brown);
  font-weight: 700;
}

.articles {
  background: #f8efe6;
}

.articles .btn {
  margin-top: 26px;
}

.article-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.article-card,
.review-card,
.contact-form {
  background: rgba(255, 250, 244, 0.78);
  border: 1px solid rgba(77, 55, 43, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.article-card {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.article-card span {
  color: var(--rose);
  font-weight: 800;
}

.article-card p {
  font-size: 15px;
}

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

.review-card {
  padding: 28px;
}

.review-card blockquote {
  margin: 14px 0 20px;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1.25;
}

.review-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.cta-strip {
  margin-top: 34px;
}

.centered {
  text-align: center;
}

.footer {
  background: linear-gradient(135deg, #efe1d1, #fbf5ec);
  border-top: 1px solid rgba(77, 55, 43, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 20px;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--brown);
  font-weight: 700;
}

.quick-line {
  padding-top: 10px;
  color: var(--rose);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(77, 55, 43, 0.15);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(143, 63, 69, 0.5);
  box-shadow: 0 0 0 4px rgba(143, 63, 69, 0.11);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(77, 55, 43, 0.12);
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom span:first-child {
  color: var(--brown);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 180ms;
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 14px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image-wrap img {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(280px, 45vw);
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 75px 14px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(255, 250, 244, 0.98);
    border: 1px solid rgba(77, 55, 43, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .about-grid,
  .custom-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .article-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .section-pad {
    padding: 68px 18px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand span:last-child {
    font-size: 15px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 36px;
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .hero-note {
    position: static;
    width: calc(100% - 28px);
    margin: -24px auto 0;
  }

  .hero-image-wrap img {
    border-width: 7px;
    border-radius: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .art-card,
  .art-card.tall,
  .art-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .art-card img {
    height: auto;
    max-height: none;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .custom-card {
    padding: 20px;
    border-radius: 12px;
  }

  .footer-bottom {
    display: grid;
  }
}
