:root {
  --brown-950: #2d1208;
  --brown-900: #3d190b;
  --brown-800: #54260f;
  --brown-700: #6d3317;
  --caramel: #a65a25;
  --gold: #d8a84e;
  --cream: #f6eddb;
  --cream-2: #ede0c8;
  --sand: #d8c5a7;
  --paper: #fcf8f0;
  --ink: #34241c;
  --muted: #7a675c;
  --white: #fffdf8;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Aptos", "Segoe UI", Arial, sans-serif;
  --shadow: 0 24px 60px rgba(61, 25, 11, .15);
  --container: 1240px;
  --radius: 3px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--cream);
  background: var(--brown-700);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: .7rem 1rem;
  transform: translateY(-150%);
  color: var(--white);
  background: var(--brown-900);
  border-radius: 2px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.25rem;
  color: rgba(255, 253, 248, .7);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-dark {
  color: var(--brown-700);
}

.eyebrow-light {
  color: var(--gold);
}

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

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

h1,
h2 {
  text-wrap: balance;
}

h1 em,
h2 em {
  color: var(--caramel);
  font-weight: 400;
}

h2 {
  margin-bottom: 0;
  color: var(--brown-900);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9rem 1.4rem;
  border: 1px solid transparent;
  font-size: .76rem;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.arrow-link:focus-visible,
.main-nav a:focus-visible,
.footer-social a:focus-visible,
.floating-whatsapp:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.button-primary {
  color: var(--brown-950);
  background: var(--gold);
}

.button-primary:hover {
  background: #e6bb68;
}

.button-cream {
  color: var(--brown-900);
  background: var(--cream);
}

.button-cream:hover {
  color: var(--cream);
  background: var(--caramel);
}

.button svg {
  width: 20px;
  margin-left: .8rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 78px;
  color: var(--cream);
  background: rgba(83, 37, 14, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(16px);
  transition: height .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(83, 37, 14, .985);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  flex-shrink: 0;
}

.brand-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(216, 168, 78, .6);
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1;
  transform: rotate(-3deg);
}

.brand-logo-crop {
  position: relative;
  display: block;
  width: 220px;
  height: 48px;
  flex: 0 0 220px;
  overflow: hidden;
  background: transparent;
}

.brand-logo-crop img {
  position: absolute;
  top: -86px;
  left: 50%;
  width: 242px;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: .32rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: .72rem;
  line-height: 1;
  letter-spacing: .15em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.1vw, 2rem);
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: .4rem;
  color: rgba(255, 253, 248, .77);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: .72rem 1rem;
  color: var(--brown-950);
  background: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  margin: 6px auto;
  background: var(--cream);
  transition: transform .25s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 11% 30%, rgba(216, 168, 78, .12), transparent 28%),
    var(--brown-900);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .28;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(470px, 1.12fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  min-height: 690px;
  padding-top: 116px;
  padding-bottom: 68px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.hero-copy::before {
  position: absolute;
  top: -65px;
  left: -90px;
  color: rgba(216, 168, 78, .07);
  content: "∞";
  font-family: var(--serif);
  font-size: 13rem;
  line-height: 1;
  pointer-events: none;
}

.hero h1 {
  position: relative;
  max-width: 680px;
  margin-bottom: 1.35rem;
  color: var(--cream);
  font-size: clamp(3rem, 4.4vw, 4.65rem);
  line-height: .95;
  letter-spacing: -.055em;
}

.hero h1 em {
  display: block;
  color: var(--gold);
}

.hero-text {
  max-width: 540px;
  margin-bottom: 1.8rem;
  color: rgba(255, 253, 248, .72);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding-block: .25rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  border-bottom: 1px solid currentColor;
  transition: gap .25s ease, color .25s ease;
}

.text-link {
  color: var(--cream);
}

.text-link:hover,
.arrow-link:hover {
  gap: 1rem;
  color: var(--caramel);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.35rem;
  margin-top: 2.2rem;
  color: rgba(255, 253, 248, .55);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hero-notes span {
  position: relative;
}

.hero-notes span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -.8rem;
  width: 3px;
  height: 3px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 510px;
}

.hero-main-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 18%;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-main-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(45, 18, 8, .18), transparent 40%);
}

.hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
}

.hero-visual:hover .hero-main-image img {
  transform: scale(1.025);
}

.hero-inset {
  position: absolute;
  bottom: 28px;
  left: 0;
  z-index: 2;
  width: 32%;
  min-width: 180px;
  aspect-ratio: .82;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--brown-900);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
}

.hero-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.hero-seal {
  position: absolute;
  top: 30px;
  left: 8%;
  z-index: 3;
  display: flex;
  width: 94px;
  height: 94px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brown-950);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--brown-900), 0 0 0 7px rgba(216, 168, 78, .7);
  transform: rotate(-8deg);
}

.hero-seal span {
  font-size: .56rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-seal strong {
  margin-top: .22rem;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 1;
}

.hero-caption {
  position: absolute;
  right: -60px;
  bottom: 88px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: .82rem;
  letter-spacing: .08em;
  transform: rotate(90deg);
}

.hero-caption i {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  color: var(--brown-950);
  background: var(--gold);
  border-block: 1px solid rgba(61, 25, 11, .2);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.8rem;
  padding-block: .72rem;
  animation: marquee 22s linear infinite;
}

.marquee span {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.marquee b {
  font-size: .6rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.collections {
  position: relative;
  background:
    linear-gradient(90deg, rgba(84, 38, 15, .04) 1px, transparent 1px) 0 0 / 100px 100%,
    var(--paper);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr .65fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.split-heading > p {
  max-width: 450px;
  margin: 0 0 .4rem;
  color: var(--muted);
  font-size: 1rem;
}

.collection-tabs {
  border-top: 1px solid var(--sand);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--sand);
}

.tab-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.15rem 1rem;
  color: #9a877a;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--sand);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.12rem;
  transition: color .25s ease, background .25s ease;
}

.tab-button:last-child {
  border-right: 0;
}

.tab-button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--caramel);
  transform: scaleX(0);
  transition: transform .3s ease;
}

.tab-button span {
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.tab-button.active {
  color: var(--brown-800);
  background: rgba(237, 224, 200, .25);
}

.tab-button.active::after {
  transform: scaleX(1);
}

.tab-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  animation: panelIn .5s ease;
}

.tab-panel[hidden] {
  display: none;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
}

.panel-image {
  position: relative;
  height: 550px;
  min-width: 0;
  overflow: hidden;
}

.panel-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(45, 18, 8, .36));
}

.panel-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#tab-cama .panel-image img {
  object-position: center 38%;
}

#tab-banho .panel-image img {
  object-position: center 42%;
}

.image-label {
  position: absolute;
  bottom: 1.4rem;
  left: 1.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: .95rem;
  font-style: italic;
  letter-spacing: .05em;
}

.image-label::before {
  width: 28px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
  background: var(--cream);
}

.panel-number {
  margin-bottom: 1.4rem;
  color: var(--caramel);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.panel-copy h3 {
  margin-bottom: 1.25rem;
  color: var(--brown-900);
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  line-height: 1.1;
  letter-spacing: -.025em;
}

.panel-copy > p:not(.panel-number) {
  margin-bottom: 1.6rem;
  color: var(--muted);
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0 0 2.2rem;
  padding: 0;
  list-style: none;
}

.product-list li {
  padding: .42rem .7rem;
  color: var(--brown-800);
  background: rgba(166, 90, 37, .08);
  border: 1px solid rgba(166, 90, 37, .22);
  font-size: .69rem;
  font-weight: 650;
  letter-spacing: .04em;
}

.arrow-link {
  width: fit-content;
  color: var(--brown-800);
}

.story {
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 90% 20%, rgba(216, 168, 78, .1), transparent 26%),
    var(--brown-800);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(390px, .9fr) minmax(0, 1.1fr);
  gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
}

.story-visual {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 3.2rem;
}

.story-visual::before {
  position: absolute;
  top: -2.5rem;
  left: 0;
  width: 70%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(216, 168, 78, .35);
  border-radius: 50%;
}

.story-image-wrap {
  position: relative;
  z-index: 1;
  height: 650px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.story-image-wrap img {
  height: 100%;
  object-fit: cover;
}

.story-card {
  position: absolute;
  right: -2rem;
  bottom: 0;
  z-index: 2;
  width: min(270px, 66%);
  padding: 1.6rem;
  color: var(--brown-950);
  background: var(--gold);
  box-shadow: var(--shadow);
}

.story-card-mark {
  color: var(--brown-800);
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: .8;
}

.story-card p {
  margin: .8rem 0 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.45;
}

.story-copy h2 {
  max-width: 680px;
  margin-bottom: 1.7rem;
  color: var(--cream);
}

.story-copy h2 em {
  display: block;
  color: var(--gold);
}

.story-lead {
  max-width: 680px;
  margin-bottom: 2.3rem;
  color: rgba(255, 253, 248, .74);
  font-size: 1.02rem;
}

.story-timeline {
  margin-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.4rem;
  padding-block: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.timeline-item > strong {
  padding-top: .2rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
}

.timeline-item h3 {
  margin-bottom: .25rem;
  color: var(--cream);
  font-family: var(--sans);
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.timeline-item p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, .6);
  font-size: .84rem;
  line-height: 1.55;
}

.personal-service {
  background: var(--paper);
}

.service-intro {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.service-intro h2 {
  max-width: 850px;
}

.service-composition {
  display: grid;
  grid-template-columns: minmax(340px, .84fr) minmax(0, 1.16fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.service-copy {
  padding-left: clamp(0rem, 3vw, 3rem);
}

.service-kicker {
  margin-bottom: .9rem;
  color: var(--caramel);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-copy > h3 {
  margin-bottom: 1.3rem;
  color: var(--brown-900);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
}

.service-copy > p:not(.service-kicker) {
  color: var(--muted);
}

.service-steps {
  margin-block: 2rem;
  border-top: 1px solid var(--sand);
}

.service-steps > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  align-items: start;
  padding-block: 1rem;
  border-bottom: 1px solid var(--sand);
}

.service-steps span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--caramel);
  border: 1px solid rgba(166, 90, 37, .4);
  border-radius: 50%;
  font-size: .6rem;
  font-weight: 800;
}

.service-steps p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
}

.service-steps strong {
  color: var(--brown-900);
}

.service-gallery {
  position: relative;
  min-height: 690px;
}

.service-photo-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 86%;
  margin: 0;
  overflow: hidden;
}

.service-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-photo-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 43%;
  height: 58%;
  margin: 0;
  overflow: hidden;
  border: 10px solid var(--paper);
  box-shadow: var(--shadow);
}

.service-photo-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.service-stamp {
  position: absolute;
  top: 2.4rem;
  left: 12%;
  z-index: 3;
  width: 122px;
  height: 122px;
  color: var(--cream);
  background: var(--brown-800);
  border-radius: 50%;
  box-shadow: 0 0 0 7px var(--paper), 0 0 0 8px var(--brown-800);
}

.service-stamp svg {
  position: absolute;
  inset: 7px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  fill: currentColor;
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.2px;
  animation: stampRotate 18s linear infinite;
}

.service-stamp > span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.7rem;
  transform: translate(-50%, -53%);
}

@keyframes stampRotate {
  to { transform: rotate(360deg); }
}

.quality-strip {
  color: var(--cream);
  background: var(--brown-900);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quality-grid article {
  position: relative;
  padding: 3.2rem clamp(2rem, 4vw, 4rem);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .13);
}

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

.quality-grid svg {
  width: 44px;
  margin: 0 auto 1.2rem;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.quality-grid h3 {
  margin-bottom: .55rem;
  color: var(--cream);
  font-size: 1.3rem;
}

.quality-grid p {
  max-width: 310px;
  margin: 0 auto;
  color: rgba(255, 253, 248, .6);
  font-size: .84rem;
}

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

.gallery-heading {
  display: grid;
  grid-template-columns: .8fr 1.5fr .5fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.gallery-heading h2 {
  max-width: 700px;
}

.gallery-heading .arrow-link {
  justify-self: end;
  margin-bottom: .3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 1;
  background: linear-gradient(180deg, transparent 46%, rgba(45, 18, 8, .72));
  opacity: .72;
  transition: opacity .3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-item figcaption {
  position: absolute;
  right: 1.15rem;
  bottom: 1rem;
  left: 1.15rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: .9rem;
  line-height: 1.2;
  letter-spacing: .02em;
}

.gallery-item figcaption span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.gallery-tall {
  grid-row: 1 / span 2;
}

.gallery-wide-top {
  grid-column: 2 / span 2;
  grid-row: 1;
}

.gallery-square-top {
  grid-column: 4;
  grid-row: 1;
}

.gallery-detail {
  grid-column: 2;
  grid-row: 2;
}

.gallery-wide-middle {
  grid-column: 3 / span 2;
  grid-row: 2;
}

.gallery-wide-bottom {
  grid-column: 1 / span 2;
  grid-row: 3;
}

.gallery-store {
  grid-column: 3;
  grid-row: 3;
}

.gallery-green {
  grid-column: 4;
  grid-row: 3;
}

.gallery-tall img {
  object-position: center 30%;
}

.gallery-wide-top img {
  object-position: center 42%;
}

.gallery-wide-middle img {
  object-position: center 45%;
}

.gallery-wide-bottom img {
  object-position: center 55%;
}

.gallery-detail img,
.gallery-store img {
  object-position: center 42%;
}

.gallery-green img {
  object-position: center 38%;
}

.faq {
  color: var(--cream);
  background: var(--brown-700);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(4rem, 8vw, 8rem);
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro h2 {
  max-width: 430px;
  margin-bottom: 1.4rem;
  color: var(--cream);
}

.faq-intro > p:last-child {
  max-width: 420px;
  color: rgba(255, 253, 248, .62);
}

.accordion {
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 0;
  color: var(--cream);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 650;
  text-align: left;
}

.accordion-item button span {
  position: relative;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border: 1px solid rgba(216, 168, 78, .6);
  border-radius: 50%;
}

.accordion-item button span::before,
.accordion-item button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.accordion-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .25s ease;
}

.accordion-item button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-content {
  overflow: hidden;
}

.accordion-content p {
  max-width: 700px;
  margin: -.3rem 0 1.5rem;
  color: rgba(255, 253, 248, .65);
  font-size: .9rem;
}

.visit {
  background:
    radial-gradient(circle at 10% 100%, rgba(216, 168, 78, .15), transparent 28%),
    var(--paper);
}

.visit-card {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.visit-brand {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--brown-800);
}

.visit-brand::after {
  position: absolute;
  inset: 1.5rem;
  content: "";
  border: 1px solid rgba(216, 168, 78, .3);
  pointer-events: none;
}

.visit-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.visit-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem);
}

.visit-content h2 {
  max-width: 760px;
  margin-bottom: 2.3rem;
}

.visit-details {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding-block: 1.3rem;
  border-block: 1px solid var(--sand);
}

.visit-details span {
  display: block;
  margin-bottom: .65rem;
  color: var(--caramel);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.visit-details p {
  margin-bottom: .4rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

.visit-details a {
  color: var(--brown-800);
  font-size: .72rem;
  font-weight: 750;
  border-bottom: 1px solid currentColor;
}

.visit-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.phone-link {
  color: var(--brown-800);
  font-family: var(--serif);
  font-size: 1.15rem;
  border-bottom: 1px solid var(--brown-800);
}

.site-footer {
  padding: 4rem 0 1.4rem;
  color: var(--cream);
  background: #53250e;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 253, 248, .58);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.55;
  text-align: center;
}

.brand-footer {
  display: block;
  width: 250px;
  max-width: 100%;
}

.brand-footer img {
  width: 100%;
  height: auto;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 1.3rem;
}

.footer-social a {
  color: rgba(255, 253, 248, .7);
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .05em;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.3rem;
  color: rgba(255, 253, 248, .38);
  font-size: .64rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  height: 50px;
  align-items: center;
  gap: .55rem;
  padding: 0 1rem 0 .78rem;
  color: #fff;
  background: #1d8e56;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .23);
  font-size: .72rem;
  font-weight: 750;
  transition: transform .25s ease, background .25s ease;
}

.floating-whatsapp:hover {
  background: #167747;
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 27px;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 1rem;
  }

  .main-nav > a:not(.nav-cta) {
    font-size: .69rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr);
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 5.4vw, 4.4rem);
  }

  .hero-notes {
    max-width: 400px;
  }

  .story-grid {
    gap: 4rem;
  }

  .story-card {
    right: -1rem;
  }

  .gallery-heading {
    grid-template-columns: 1fr 1.4fr;
  }

  .gallery-heading .arrow-link {
    grid-column: 2;
    justify-self: start;
  }

  .visit-card {
    grid-template-columns: .8fr 1.2fr;
  }
}

@media (max-width: 900px) {
  .site-header,
  .site-header.scrolled {
    height: 68px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .header-inner > .brand {
    position: relative;
    z-index: 3;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .menu-toggle[aria-expanded="true"] {
    border: 1px solid rgba(216, 168, 78, .72);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: .5rem;
    overflow-y: auto;
    padding: 5rem 8vw;
    visibility: hidden;
    background: var(--brown-950);
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-cta) {
    width: 100%;
    padding: .65rem 0;
    color: var(--cream);
    font-family: var(--serif);
    font-size: clamp(1.6rem, 5vw, 2.3rem);
    font-weight: 400;
  }

  .nav-cta {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.6rem;
    min-height: auto;
    padding-top: 125px;
    padding-bottom: 55px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-main-image {
    left: 12%;
  }

  .hero-inset {
    width: 30%;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

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

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    width: min(90%, 600px);
    margin: 0 auto;
  }

  .story-image-wrap {
    height: 630px;
  }

  .service-intro {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .service-intro .eyebrow {
    margin-bottom: 1rem;
  }

  .service-composition {
    grid-template-columns: 1fr;
  }

  .service-copy {
    max-width: 680px;
    padding-left: 0;
  }

  .service-gallery {
    min-height: 650px;
  }

  .quality-grid article {
    padding: 2.7rem 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 230px;
  }

  .gallery-tall {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .gallery-wide-top {
    grid-column: 2 / span 2;
    grid-row: 1;
  }

  .gallery-square-top {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-detail {
    grid-column: 3;
    grid-row: 2;
  }

  .gallery-wide-middle {
    grid-column: 1 / span 2;
    grid-row: 3;
  }

  .gallery-wide-bottom {
    grid-column: 3;
    grid-row: 3;
  }

  .gallery-store {
    grid-column: 1;
    grid-row: 4;
  }

  .gallery-green {
    grid-column: 2 / span 2;
    grid-row: 4;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faq-intro {
    position: static;
  }

  .visit-card {
    grid-template-columns: 1fr;
  }

  .visit-brand {
    min-height: 380px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 4.5rem;
  }

  .brand-copy strong {
    font-size: .87rem;
  }

  .brand-symbol {
    width: 34px;
    height: 34px;
  }

  .brand-logo-crop {
    width: 180px;
    height: 40px;
    flex-basis: 180px;
  }

  .brand-logo-crop img {
    top: -70px;
    width: 198px;
  }

  .hero-grid {
    padding-top: 112px;
    padding-bottom: 45px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-text {
    font-size: .96rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem 1.2rem;
  }

  .hero-notes span::after {
    display: none;
  }

  .hero-visual {
    min-height: 475px;
  }

  .hero-main-image {
    left: 8%;
  }

  .hero-inset {
    bottom: 22px;
    width: 36%;
    min-width: 125px;
    border-width: 6px;
  }

  .hero-seal {
    top: 20px;
    left: 2%;
    width: 76px;
    height: 76px;
  }

  .hero-seal strong {
    font-size: 1.1rem;
  }

  .hero-caption {
    display: none;
  }

  .tab-list {
    overflow: visible;
  }

  .tab-button {
    min-width: 0;
    justify-content: center;
    gap: .38rem;
    padding-inline: .25rem;
    font-size: 1rem;
  }

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

  .panel-image {
    height: 420px;
  }

  .panel-copy {
    padding: 2.2rem 1.4rem;
  }

  .story-visual {
    width: calc(100% - 10px);
    padding-left: 1rem;
  }

  .story-image-wrap {
    height: 530px;
  }

  .story-card {
    right: -5px;
  }

  .timeline-item {
    grid-template-columns: 55px 1fr;
    gap: .8rem;
  }

  .service-gallery {
    min-height: 500px;
  }

  .service-photo-main {
    width: 78%;
  }

  .service-photo-detail {
    width: 50%;
    border-width: 7px;
  }

  .service-stamp {
    top: 1.2rem;
    left: 3%;
    width: 90px;
    height: 90px;
  }

  .service-copy .button {
    width: 100%;
  }

  .quality-grid {
    grid-template-columns: 1fr;
  }

  .quality-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }

  .quality-grid article:last-child {
    border-bottom: 0;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-heading .arrow-link {
    grid-column: auto;
    justify-self: start;
  }

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

  .gallery-tall {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .gallery-wide-top {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-square-top {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-detail {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery-wide-middle {
    grid-column: 2;
    grid-row: 3;
  }

  .gallery-wide-bottom {
    grid-column: 1 / span 2;
    grid-row: 4;
  }

  .gallery-store {
    grid-column: 1;
    grid-row: 5;
  }

  .gallery-green {
    grid-column: 2;
    grid-row: 5;
  }

  .gallery-item figcaption {
    right: .7rem;
    bottom: .75rem;
    left: .7rem;
    align-items: flex-start;
    flex-direction: column;
    gap: .25rem;
    font-size: .78rem;
  }

  .faq-grid {
    gap: 2.4rem;
  }

  .visit-card {
    width: calc(100% - 24px);
  }

  .visit-brand {
    min-height: 290px;
  }

  .visit-content {
    padding: 2.3rem 1.25rem;
  }

  .visit-details {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .visit-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .visit-actions .button {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: start;
  }

  .footer-top > p {
    text-align: left;
  }

  .footer-social {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .5rem;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 50px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-height: 800px) and (min-width: 901px) {
  .hero-grid {
    min-height: 650px;
    padding-top: 105px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 4.8vw, 4.6rem);
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-notes {
    margin-top: 1.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
