
:root {
  --bg: #f7f3ee;
  --bg-alt: #efebe5;
  --surface: #faf7f2;
  --text: #2d2926;
  --muted: #5d5752;
  --accent: #c1a369;
  --sage: #92998f;
  --sage-dark: #7f887c;
  --line: rgba(67, 57, 48, 0.16);
  --white: #fff;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --script: "Allura", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--display);
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--white);
  padding: .75rem 1rem;
  border: 1px solid var(--line);
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
  padding: 1.5rem 2rem 0;
}
.nav {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.brand {
  grid-column: 1;
  opacity: 0;
  width: 150px;
  pointer-events: none;
}
.nav-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  padding: .65rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  border-radius: 999px;
  font: 500 .9rem var(--sans);
  letter-spacing: .04em;
}
.nav-links {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.95rem;
  padding: 1.04rem 1.7rem .98rem;
  background: rgba(249,246,241,.96);
  border-bottom: 1px solid rgba(193,163,105,.28);
  box-shadow: 0 16px 32px rgba(0,0,0,.045);
}
.nav-links a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--display);
  font-size: .95rem;
  letter-spacing: .16em;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.72rem;
  height: 2px;
  background: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: clamp(760px, 94vh, 900px);
  overflow: hidden;
  background: var(--bg);
}
.hero-copy,
.hero-visual { min-height: clamp(760px, 94vh, 900px); }
.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 7rem 2.25rem 3rem;
  background:
    radial-gradient(circle at top left, rgba(193,163,105,.08), transparent 28%),
    linear-gradient(rgba(255,255,255,.3), rgba(255,255,255,.3)),
    var(--bg);
}
.hero-copy-inner {
  width: min(100%, 560px);
  text-align: center;
}
.hero-logo {
  width: clamp(205px, 24vw, 285px);
  margin: 0 auto 1.7rem;
}
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  text-transform: uppercase;
  font-size: clamp(3.55rem, 5.8vw, 5.2rem);
  line-height: .9;
  letter-spacing: .055em;
}
.ornament {
  width: 390px;
  height: 34px;
  margin: 1.45rem auto 1.6rem;
  background: url("assets/images/ornament-classic.svg") center / contain no-repeat;
}
.ornament::before,
.ornament::after,
.ornament span {
  display: none;
}
.hero-ornament {
  width: 420px;
  height: 38px;
}
.ornament.small {
  width: 305px;
  height: 27px;
  margin: 1rem auto 1.2rem;
}
.hero-tagline {
  margin: 0 auto 2.35rem;
  max-width: 31rem;
  text-transform: uppercase;
  color: var(--text);
}
.hero-tagline span { display: block; }
.hero-tagline-main {
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  letter-spacing: .2em;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.hero-tagline-sub {
  font-size: clamp(1.06rem, 1.45vw, 1.26rem);
  letter-spacing: .18em;
  line-height: 1.7;
}
.hero-tagline-sub br {
  content: "";
}
.outline-button {
  display: inline-block;
  padding: .9rem 2rem;
  border: 1px solid var(--accent);
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .12em;
  transition: background-color .2s ease;
}
.outline-button:hover { background: rgba(193,163,105,.12); }
.hero-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  margin-left: 0;
}
.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-visual::before,
.hero-visual::after {
  display: none;
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 30%;
  transform: none;
}

.atelier-section {
  display: grid;
  grid-template-columns: 44% 56%;
  background: var(--bg-alt);
}
.atelier-copy,
.atelier-visual { min-height: 570px; }
.atelier-copy {
  padding: clamp(3rem, 5vw, 4.6rem) clamp(1.5rem, 4vw, 4.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.atelier-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: .4rem;
}
.section-kicker,
.section-heading h2,
.contact-details h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: clamp(3rem, 5vw, 4.15rem);
  line-height: .95;
}
.large-text p,
.section-intro,
.craft-card p,
.pricing-card p,
.alteration-note,
.contact-details p {
  font-size: 1.12rem;
  color: var(--muted);
}
.rich-text p:first-child { margin-top: .3rem; }
.script-accent {
  font-family: var(--script);
  font-size: clamp(2.7rem, 3.8vw, 3.8rem);
  line-height: .95;
  color: var(--accent);
}
.signature {
  margin: 1.15rem auto 0;
  text-align: center;
  width: fit-content;
}

.atelier-extra {
  margin: 1.6rem auto 0;
  width: min(100%, 390px);
}
.atelier-extra img {
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  background: var(--surface);
}
.atelier-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 2.4rem;
  padding-inline: 1rem;
  text-align: center;
}
.narrow { max-width: 780px; }

.gallery-section,
.craft-section,
.pricing-section {
  padding: clamp(4rem, 7vw, 6rem) 1rem;
}
.gallery-strip {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .85rem;
}
.gallery-card {
  display: block;
  overflow: hidden;
  background: #e5dfd6;
  aspect-ratio: .82 / 1;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-card:hover img { transform: scale(1.03); }

.craft-section { background: var(--surface); }
.craft-grid,
.pricing-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}
.craft-grid { grid-template-columns: repeat(3, 1fr); }
.pricing-grid { grid-template-columns: repeat(2, 1fr); }

.craft-text-block { max-width: 880px; margin: 0 auto; }
.craft-card,
.pricing-card {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  padding: 1.85rem 1.65rem;
}
.craft-card h3,
.pricing-card h3 {
  margin: 0 0 .85rem;
  font-weight: 400;
  font-size: 2rem;
}
.pricing-section { background: var(--bg-alt); }

.heritage-quote {
  padding: clamp(2.7rem, 5vw, 4rem) 1rem;
  background: var(--sage);
}
.heritage-quote-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: .25rem 1rem;
  text-align: center;
}
.heritage-ornament {
  margin: .2rem auto 1rem;
  filter: brightness(0) invert(1);
  opacity: .95;
}
.heritage-quote-text {
  margin: 0 auto;
  color: rgba(255,255,255,.98);
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  line-height: 1.12;
  max-width: 100%;
  width: fit-content;
}
.heritage-quote-text .quote-line {
  display: block;
  white-space: nowrap;
}
.heritage-quote-text + .heritage-ornament {
  margin-top: 1rem;
  margin-bottom: 0;
}
.price-list { margin: 0; padding: 0; }
.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
}
.price-list div:last-child { border-bottom: 0; }
.price-list dt {
  font-size: 1.15rem;
  font-weight: 400;
}
.price-list dd {
  margin: 0;
  color: var(--sage-dark);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}
.alteration-note {
  margin: 1.65rem 0 0;
  text-align: center;
}

.contact-band {
  display: grid;
  grid-template-columns: 32% 35% 33%;
  align-items: center;
  gap: 1rem;
  padding: 2.2rem 2rem;
  background: var(--sage);
  color: var(--white);
}
.contact-logo-wrap {
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  border-right: 1px solid rgba(255,255,255,.34);
}
.contact-logo-wrap img {
  width: min(290px, 100%);
}
.contact-details {
  padding-inline: .6rem;
}
.contact-details h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 4.2vw, 3.55rem);
  margin-bottom: .2rem;
}
.contact-details p {
  margin: .35rem 0;
  color: rgba(255,255,255,.95);
}
.contact-details a {
  color: var(--white);
  text-decoration-color: rgba(255,255,255,.42);
  text-underline-offset: .18em;
}
.contact-aside {
  padding-left: 1rem;
}
.contact-script {
  color: rgba(255,255,255,.98);
  max-width: none;
  font-size: clamp(2.2rem, 3.1vw, 3.1rem);
  line-height: 1.08;
}
.contact-script span {
  display: block;
  white-space: nowrap;
}
.site-footer {
  background: var(--sage-dark);
  color: rgba(255,255,255,.9);
  text-align: center;
  padding: .95rem 1rem 1rem;
  font-size: .95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .nav-links { gap: 1.5rem; padding: .98rem 1.35rem .95rem; }
  .nav-links a { font-size: .9rem; }
}

@media (max-width: 1024px) {
  .hero,
  .atelier-section,
  .craft-grid,
  .pricing-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .hero-visual,
  .atelier-copy,
  .atelier-visual { min-height: auto; }
  .hero-visual {
    min-height: 440px;
    margin-left: 0;
  }
  .hero-visual::before,
  .hero-visual::after {
    display: none;
  }
  .hero-visual img {
    width: 100%;
    object-position: 0% 20%;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .atelier-visual { min-height: 460px; }
  .nav-toggle { display: inline-block; }
  .nav-links {
    grid-column: auto;
    justify-self: auto;
    position: absolute;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    min-width: 230px;
    gap: 1rem;
    padding: 1rem 1.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a.active::after { display: none; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .contact-logo-wrap {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.34);
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
  .contact-aside,
  .contact-details { padding-left: 0; }
}

@media (max-width: 640px) {
  .site-header { padding: 1rem 1rem 0; }
  .hero-copy { padding: 6.1rem 1.15rem 3rem; }
  .hero h1 { font-size: clamp(3.25rem, 14vw, 4.55rem); }
  .hero-tagline-main,
  .hero-tagline-sub {
    font-size: .98rem;
    letter-spacing: .13em;
  }
  .ornament,
  .hero-ornament { width: 270px; height: 25px; }
  .ornament.small { width: 210px; height: 19px; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-section,
  .craft-section,
  .pricing-section,
  .contact-band { padding-left: 1rem; padding-right: 1rem; }
  .script-accent { font-size: 2.55rem; }
}

@media (max-width: 700px) {
  .heritage-quote-text {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }
  .heritage-quote-text .quote-line {
    white-space: normal;
  }
}


.about-layout {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}
.about-portrait {
  width: min(100%, 250px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  justify-self: center;
  box-shadow: 0 18px 38px rgba(0,0,0,.09);
  border: 1px solid var(--line);
  background: #f2eee8;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-copy p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.72;
  color: var(--muted);
}
.about-copy p + p {
  margin-top: 1.2rem;
}

@media (max-width: 900px) {

  .about-layout {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .about-copy {
    max-width: 760px;
    margin: 0 auto;
  }

}
