:root {
  --ivory: #f7f3ed;
  --cream: #ece3d7;
  --paper: #fbf8f2;
  --charcoal: #252421;
  --ink: #191815;
  --terracotta: #a55e49;
  --terracotta-dark: #844532;
  --wine: #743e47;
  --olive: #66705b;
  --line: rgba(37, 36, 33, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  background: var(--ivory);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
}

h2 {
  color: var(--ink);
  font-size: clamp(2.45rem, 3.35vw, 4rem);
  line-height: 0.92;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid #d7aa74;
  outline-offset: 3px;
}

.eyebrow {
  margin-bottom: 15px;
  color: #5b564f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  text-align: center;
  transition: background-color 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

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

.button:active {
  transform: translateY(0);
}

.button--terracotta {
  background: var(--terracotta);
  color: #fff;
}

.button--terracotta:hover {
  background: var(--terracotta-dark);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(18, 17, 15, 0.22);
  color: #fff;
}

.button--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button--arrow::after {
  content: "→";
  font-size: 1.08rem;
  font-weight: 400;
  transition: transform 220ms var(--ease);
}

.button--arrow:hover::after,
.text-link:hover span {
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #783e2d;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link span {
  display: inline-block;
  text-decoration: none;
  transition: transform 220ms var(--ease);
}

.section-rule {
  border-top: 1px solid rgba(91, 74, 55, 0.12);
}

.site-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  height: 104px;
  grid-template-columns: minmax(240px, 1.2fr) minmax(580px, 3.3fr) minmax(150px, 0.8fr);
  align-items: center;
  padding: 0 30px 0 44px;
  color: #fff;
  transition: height 220ms var(--ease), background-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.site-header.is-scrolled {
  position: fixed;
  height: 78px;
  background: rgba(25, 24, 21, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.brand {
  position: relative;
  display: grid;
  width: max-content;
  min-height: 72px;
  padding-left: 68px;
  align-content: center;
  color: #fff;
}

.brand__branch {
  position: absolute;
  top: -35px;
  left: -17px;
  width: 105px;
  height: 132px;
  object-fit: contain;
  object-position: 64% center;
  opacity: 0.94;
  transform: rotate(-29deg);
}

.brand__name {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 0.82;
}

.brand__tag {
  margin-top: 10px;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.8vw, 30px);
  font-size: 0.75rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 14px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  min-width: 152px;
}

.menu-toggle,
.mobile-menu,
.mobile-whatsapp {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 610px;
  grid-template-columns: 1fr;
  background: #131311;
  color: #fff;
}

.hero__main,
.hero__aside {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  min-width: 0;
  overflow: hidden;
}

.hero__main {
  min-height: 610px;
}

.hero__picture,
.hero__image {
  width: 100%;
  height: 100%;
}

.hero__picture {
  position: absolute;
  inset: 0;
}

.hero__image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 47% 56%;
  transform: scale(1.015);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 15, 13, 0.71) 0%, rgba(16, 15, 13, 0.34) 37%, rgba(16, 15, 13, 0.25) 64%, rgba(16, 15, 13, 0.44) 100%),
    linear-gradient(180deg, rgba(10, 10, 9, 0.46) 0%, rgba(10, 10, 9, 0.03) 42%, rgba(10, 10, 9, 0.59) 100%);
}

.hero__content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(980px, calc(100% - 360px));
  text-align: center;
  transform: translate(-50%, -38%);
}

.hero__content.reveal {
  transform: translate(-50%, -35%);
}

.hero__content.reveal.is-visible {
  transform: translate(-50%, -38%);
}

.hero h1 {
  color: #fff;
  font-size: clamp(3.5rem, 5.3vw, 6.25rem);
  line-height: 0.82;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.38);
}

.hero__intro {
  width: min(700px, 100%);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  line-height: 1.25;
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.hero__actions .button {
  min-width: 210px;
}

.play-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.58rem;
  padding-left: 2px;
}

.hero__side-note {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 48px;
  padding-bottom: 27px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.65;
  text-transform: uppercase;
  transform: translateY(-5%);
}

.hero__side-note::after,
.hero__aside p::after,
.weddings__image p::after,
.weddings__detail p::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero__aside {
  min-height: 610px;
  border: 0;
  pointer-events: none;
}

.hero__aside-veil {
  display: none;
}

.hero__aside p {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 30px;
  padding-bottom: 22px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.55;
  text-align: right;
  text-transform: uppercase;
}

.hero__aside p::after {
  right: 0;
  left: auto;
}

.essence {
  display: grid;
  min-height: 330px;
  grid-template-columns: 23% 30% 19% 28%;
  background: var(--paper);
}

.essence__visual {
  position: relative;
  min-height: 330px;
  padding: 26px 20px 22px 56px;
}

.essence__paper {
  position: absolute;
  inset: 48px 52px 20px 18px;
  background: #73755f;
  transform: rotate(-1deg);
}

.essence__visual img {
  position: relative;
  z-index: 2;
  width: 90%;
  height: 190px;
  margin-left: auto;
  object-fit: cover;
  object-position: center 58%;
}

.essence__visual > p {
  position: absolute;
  z-index: 3;
  bottom: 42px;
  left: 40px;
  color: #f8f2e8;
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  line-height: 0.95;
  transform: rotate(-7deg);
}

.essence__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 48px;
}

.essence__copy h2 {
  font-size: clamp(3rem, 3.45vw, 4.15rem);
}

.essence__copy > p:not(.eyebrow) {
  max-width: 480px;
  margin-top: 20px;
  color: #4e4a45;
  font-size: 0.88rem;
  line-height: 1.52;
}

.essence__copy .text-link {
  margin-top: 4px;
  align-self: flex-start;
}

.essence__quote {
  display: grid;
  min-height: 70%;
  place-content: center;
  align-self: center;
  border-left: 1px solid var(--line);
  text-align: center;
}

.essence__quote p {
  color: #49443f;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 2.05vw, 2.5rem);
  font-style: italic;
  line-height: 0.96;
}

.essence__quote cite {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 0.57rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.essence__collage {
  display: grid;
  min-height: 330px;
  grid-template-columns: 58% 42%;
  gap: 5px;
  padding: 26px 18px 24px 0;
}

.essence__collage img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.essence__collage img:first-child {
  object-position: 50% center;
}

.essence__collage img:last-child {
  object-position: 40% center;
}

.services {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(5, minmax(150px, 1fr));
  background: var(--ivory);
}

.services__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 46px;
}

.services__intro h2 {
  font-size: clamp(2.8rem, 3.2vw, 4rem);
}

.services__intro > p:not(.eyebrow) {
  max-width: 260px;
  margin-top: 12px;
  color: #5b554f;
  font-size: 0.82rem;
}

.short-rule {
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 17px;
  background: var(--terracotta);
}

.services__intro .text-link {
  margin-top: 4px;
  align-self: flex-start;
}

.service-card {
  min-width: 0;
  border-left: 1px solid rgba(100, 80, 60, 0.1);
  background: var(--paper);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transition: filter 320ms var(--ease), transform 420ms var(--ease);
}

.service-card:hover img {
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.015);
}

.service-card:nth-of-type(2) img {
  object-position: center 32%;
}

.service-card > div {
  min-height: 104px;
  padding: 14px 16px 18px;
}

.service-card h3 {
  font-size: 1.55rem;
  line-height: 1;
}

.service-card p {
  margin-top: 8px;
  color: #635d56;
  font-size: 0.72rem;
  line-height: 1.3;
}

.weddings {
  display: grid;
  min-height: 360px;
  grid-template-columns: 52% 30% 18%;
  background: var(--paper);
}

.weddings__image,
.weddings__detail,
.business__image,
.contact__image {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.weddings__image img,
.weddings__detail img,
.business__image > img,
.contact__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.weddings__image img {
  object-position: center 40%;
}

.weddings__image::after,
.weddings__detail::after,
.contact__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 18, 15, 0.55));
  content: "";
}

.weddings__image p,
.weddings__detail p {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 34px;
  padding-bottom: 20px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.48;
  text-transform: uppercase;
}

.weddings__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 46px;
}

.weddings__copy h2 {
  font-size: clamp(2.9rem, 3.4vw, 4.15rem);
}

.weddings__copy > p:not(.eyebrow) {
  margin-top: 20px;
  color: #5b554e;
  font-size: 0.82rem;
}

.weddings__copy .button {
  margin-top: 20px;
  align-self: flex-start;
}

.weddings__detail img {
  object-position: 50% center;
}

.weddings__detail p {
  right: 22px;
  left: auto;
  text-align: right;
}

.weddings__detail p::after {
  right: 0;
  left: auto;
}

.business {
  display: grid;
  min-height: 355px;
  grid-template-columns: 30% 27% 43%;
  background: var(--paper);
}

.business__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 42px;
}

.business__copy h2 {
  font-size: clamp(2.5rem, 3.15vw, 3.8rem);
}

.business__copy > p:not(.eyebrow) {
  margin-top: 18px;
  color: #59534d;
  font-size: 0.82rem;
}

.business__copy .button {
  margin-top: 18px;
  align-self: flex-start;
}

.business__image > img {
  object-position: center;
}

.paper-note {
  position: absolute;
  right: -6px;
  bottom: 0;
  display: grid;
  width: 155px;
  height: 146px;
  place-content: center;
  background: rgba(247, 243, 237, 0.94);
  color: #766356;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 0.95;
  text-align: center;
  transform: rotate(-3deg);
}

.gallery-preview {
  padding: 34px 34px 24px 44px;
  background:
    radial-gradient(circle at 92% 3%, rgba(102, 112, 91, 0.13), transparent 26%),
    var(--paper);
}

.gallery-preview__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 21px;
}

.gallery-preview__heading .eyebrow {
  margin-bottom: 8px;
}

.gallery-preview__heading h2 {
  font-size: clamp(2.1rem, 2.7vw, 3.2rem);
}

.gallery-open {
  white-space: nowrap;
}

.gallery-preview__grid {
  display: grid;
  height: 175px;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
}

.gallery-preview__grid button {
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #ddd;
}

.gallery-preview__grid button:first-child,
.gallery-preview__grid button:nth-child(3) {
  grid-row: span 2;
}

.gallery-preview__grid button:last-child {
  grid-column: 4;
}

.gallery-preview__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms var(--ease), filter 350ms var(--ease);
}

.gallery-preview__grid button:hover img {
  filter: brightness(0.92);
  transform: scale(1.035);
}

.contact {
  position: relative;
  display: grid;
  min-height: 300px;
  grid-template-columns: 36% 44% 20%;
  overflow: hidden;
  background: var(--ivory);
}

.contact__branch {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.contact__branch--left {
  bottom: -235px;
  left: -110px;
  width: 420px;
  opacity: 0.28;
  transform: rotate(19deg);
}

.contact__intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 28px 34px 112px;
}

.contact__intro h2 {
  font-size: clamp(2.7rem, 3vw, 3.7rem);
}

.contact__intro > p {
  max-width: 490px;
  color: #69625b;
  font-size: 0.78rem;
}

.contact__facts {
  display: flex;
  gap: 22px;
  margin-top: 28px;
}

.contact__facts > a,
.contact__facts > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.contact__facts svg,
.mobile-whatsapp svg,
.floating-whatsapp svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact__facts svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--terracotta-dark);
}

.contact__facts a:first-child svg {
  color: #22a85a;
}

.contact__facts span {
  display: flex;
  flex-direction: column;
}

.contact__facts small {
  font-size: 0.59rem;
}

.contact__facts strong {
  font-size: 0.69rem;
  font-weight: 700;
}

.quote-form {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
  padding: 30px 34px;
  border-left: 1px solid var(--line);
}

.field {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(37, 36, 33, 0.16);
  background: rgba(255, 255, 255, 0.35);
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 12px;
  color: #776f66;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 18px 11px 5px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 0.78rem;
}

.field textarea {
  min-height: 56px;
  resize: vertical;
}

.field:focus-within {
  border-color: var(--terracotta);
  box-shadow: inset 0 0 0 1px var(--terracotta);
}

.field.is-invalid {
  border-color: #a63a31;
}

.form-status {
  min-height: 20px;
  align-self: center;
  color: #a63a31;
  font-size: 0.7rem;
}

.quote-form > .button {
  justify-self: end;
}

.contact__image {
  min-height: 300px;
}

.contact__image > img {
  object-position: center 48%;
}

.contact__image > span {
  position: absolute;
  z-index: 2;
  top: 45%;
  left: 50%;
  width: 90%;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.1vw, 2.6rem);
  font-style: italic;
  line-height: 0.92;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.62);
  transform: translate(-50%, -50%) rotate(-4deg);
}

.site-footer {
  display: grid;
  min-height: 125px;
  grid-template-columns: 30% 31% 19% 20%;
  align-items: center;
  padding: 20px 48px;
  background: #1f1f1d;
  color: #f4eee4;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand img {
  width: 62px;
  height: 72px;
  object-fit: contain;
  opacity: 0.7;
  transform: rotate(-26deg);
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.footer-brand small,
.footer-words {
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.site-footer > p:not(.footer-words) {
  color: #bcb6ae;
  font-size: 0.72rem;
}

.site-footer > p span {
  color: #f4eee4;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-words {
  justify-self: end;
  padding-right: 45px;
  color: #c5beb5;
  line-height: 1.65;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: none;
  min-height: 50px;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  border-radius: 999px;
  background: #1fa85b;
  color: #fff;
  box-shadow: 0 10px 28px rgba(20, 90, 52, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
}

.lightbox {
  width: min(1120px, calc(100vw - 44px));
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: #fff;
}

.lightbox::backdrop {
  background: rgba(16, 15, 13, 0.92);
  backdrop-filter: blur(6px);
}

.lightbox figure {
  display: grid;
  justify-items: center;
}

.lightbox figure img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.lightbox figcaption {
  margin-top: 10px;
  font-size: 0.78rem;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(20, 19, 17, 0.58);
  color: #fff;
  font-size: 1.4rem;
}

.lightbox__close {
  top: -58px;
  right: 0;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: -68px;
}

.lightbox__nav--next {
  right: -68px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: minmax(210px, 1fr) 3fr minmax(140px, 0.8fr);
    padding-left: 24px;
  }

  .brand {
    padding-left: 56px;
  }

  .brand__name {
    font-size: 1.65rem;
  }

  .brand__branch {
    left: -25px;
    width: 90px;
  }

  .desktop-nav {
    gap: 14px;
    font-size: 0.67rem;
  }

  .hero__content {
    left: 50%;
    width: min(860px, calc(100% - 300px));
  }

  .hero__side-note {
    left: 26px;
  }

  .services {
    grid-template-columns: minmax(235px, 1.2fr) repeat(5, minmax(135px, 1fr));
  }

  .services__intro,
  .weddings__copy,
  .business__copy {
    padding-right: 28px;
    padding-left: 28px;
  }

  .service-card img {
    height: 210px;
  }

  .contact__intro {
    padding-left: 48px;
  }

  .contact__facts {
    gap: 12px;
  }

  .contact__facts small {
    display: none;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 74px;
  }

  .site-header,
  .site-header.is-scrolled {
    position: fixed;
    display: grid;
    height: 76px;
    grid-template-columns: 1fr auto auto;
    padding: 0 16px 0 18px;
    background: rgba(24, 23, 20, 0.9);
    backdrop-filter: blur(10px);
  }

  .brand {
    min-height: 60px;
    padding-left: 46px;
  }

  .brand__branch {
    top: -12px;
    left: -18px;
    width: 66px;
    height: 82px;
  }

  .brand__name {
    font-size: 1.45rem;
  }

  .brand__tag {
    display: none;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-whatsapp,
  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    background: transparent;
    color: #fff;
  }

  .mobile-whatsapp {
    margin-right: 5px;
    color: #65d58f;
  }

  .mobile-whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .menu-toggle {
    position: relative;
  }

  .menu-toggle span:not(.sr-only) {
    position: absolute;
    left: 10px;
    width: 26px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms var(--ease), top 220ms var(--ease);
  }

  .menu-toggle span:first-child {
    top: 17px;
  }

  .menu-toggle span:nth-child(2) {
    top: 28px;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    top: 23px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 95;
    inset: 76px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 24px;
    background: rgba(30, 29, 26, 0.985);
    color: #fff;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu > a:not(.button) {
    display: grid;
    min-height: 48px;
    place-items: center;
    font-family: var(--serif);
    font-size: 1.65rem;
  }

  .mobile-menu .button {
    width: min(300px, 100%);
    margin-top: 18px;
  }

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

  .hero__main {
    min-height: 680px;
  }

  .hero__aside {
    display: none;
  }

  .hero__content {
    top: 50%;
    left: 50%;
    width: min(650px, calc(100% - 60px));
    transform: translate(-50%, -34%);
  }

  .hero__content.reveal {
    transform: translate(-50%, -31%);
  }

  .hero__content.reveal.is-visible {
    transform: translate(-50%, -34%);
  }

  .hero__side-note {
    display: none;
  }

  .hero__image {
    object-position: center 48%;
  }

  .essence {
    grid-template-columns: 44% 56%;
  }

  .essence__visual,
  .essence__copy,
  .essence__quote,
  .essence__collage {
    min-height: 320px;
  }

  .essence__copy {
    padding: 32px;
  }

  .essence__quote {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .essence__collage {
    padding: 18px;
  }

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

  .services__intro {
    min-height: 320px;
  }

  .service-card {
    border-top: 1px solid rgba(100, 80, 60, 0.1);
  }

  .service-card img {
    height: 280px;
  }

  .weddings {
    grid-template-columns: 58% 42%;
  }

  .weddings__image,
  .weddings__copy {
    min-height: 440px;
  }

  .weddings__detail {
    grid-column: 1 / -1;
    height: 300px;
  }

  .business {
    grid-template-columns: 48% 52%;
  }

  .business__copy,
  .business__image {
    min-height: 400px;
  }

  .gallery-preview {
    grid-column: 1 / -1;
    min-height: 380px;
  }

  .gallery-preview__grid {
    height: 230px;
  }

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

  .contact__intro {
    padding: 50px 46px 28px;
  }

  .contact__facts small {
    display: block;
  }

  .quote-form {
    padding: 25px 46px 46px;
    border-left: 0;
  }

  .contact__image {
    height: 300px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-height: 190px;
  }

  .footer-words,
  .socials {
    justify-self: end;
  }
}

@media (max-width: 700px) {
  h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .mobile-menu {
    inset-block-start: 72px;
  }

  .brand__name {
    font-size: 1.25rem;
  }

  .hero,
  .hero__main {
    min-height: 790px;
  }

  .hero__image {
    object-position: center center;
    transform: none;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(15, 14, 12, 0.62) 0%, rgba(15, 14, 12, 0.17) 41%, rgba(15, 14, 12, 0.16) 63%, rgba(15, 14, 12, 0.72) 100%),
      linear-gradient(90deg, rgba(15, 14, 12, 0.38), transparent 80%);
  }

  .hero__content {
    top: 154px;
    left: 24px;
    width: calc(100% - 48px);
    text-align: left;
    transform: none;
  }

  .hero__content.reveal,
  .hero__content.reveal.is-visible {
    transform: none;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(3.3rem, 15vw, 4.6rem);
    line-height: 0.86;
  }

  .hero__intro {
    max-width: 330px;
    margin: 20px 0 0;
    font-size: 1.07rem;
    line-height: 1.28;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
  }

  .hero__actions .button {
    width: min(270px, 100%);
  }

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

  .essence__visual {
    min-height: 330px;
    padding: 24px 24px 20px 48px;
  }

  .essence__visual img {
    width: 88%;
    height: 235px;
  }

  .essence__copy {
    min-height: auto;
    padding: 48px 24px 44px;
  }

  .essence__copy h2 {
    font-size: clamp(3.35rem, 15vw, 4.4rem);
  }

  .essence__copy > p:not(.eyebrow) {
    font-size: 0.92rem;
  }

  .essence__quote {
    min-height: 230px;
    margin-inline: 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .essence__collage {
    min-height: 360px;
    padding: 24px;
  }

  .essence__collage img {
    min-height: 300px;
  }

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

  .services__intro {
    min-height: auto;
    padding: 52px 24px 44px;
  }

  .services__intro h2 {
    font-size: clamp(3.2rem, 15vw, 4.25rem);
  }

  .service-card {
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: 205px;
  }

  .service-card:nth-child(even) {
    grid-template-columns: 48% 52%;
  }

  .service-card:nth-child(even) img {
    order: 2;
  }

  .service-card img {
    height: 100%;
    min-height: 205px;
  }

  .service-card > div {
    display: flex;
    min-height: 205px;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
  }

  .service-card h3 {
    font-size: 1.85rem;
  }

  .service-card p {
    font-size: 0.76rem;
  }

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

  .weddings__image {
    min-height: 470px;
  }

  .weddings__copy {
    min-height: auto;
    padding: 48px 24px 52px;
  }

  .weddings__copy h2 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .weddings__copy > p:not(.eyebrow),
  .business__copy > p:not(.eyebrow) {
    font-size: 0.92rem;
  }

  .weddings__detail {
    grid-column: auto;
    height: 360px;
  }

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

  .business__copy {
    min-height: auto;
    padding: 50px 24px;
  }

  .business__copy h2 {
    font-size: clamp(2.85rem, 13vw, 4rem);
  }

  .business__image {
    min-height: 400px;
  }

  .paper-note {
    width: 145px;
    height: 136px;
    font-size: 1.35rem;
  }

  .gallery-preview {
    grid-column: auto;
    min-height: auto;
    padding: 48px 18px 24px;
  }

  .gallery-preview__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-preview__heading h2 {
    font-size: clamp(2.75rem, 13vw, 3.8rem);
  }

  .gallery-preview__grid {
    height: 470px;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(4, 1fr);
  }

  .gallery-preview__grid button:first-child {
    grid-row: span 2;
  }

  .gallery-preview__grid button:nth-child(3) {
    grid-row: span 2;
  }

  .gallery-preview__grid button:nth-child(4) {
    grid-row: span 2;
  }

  .gallery-preview__grid button:last-child {
    grid-column: auto;
  }

  .contact__intro {
    padding: 52px 24px 28px;
  }

  .contact__intro h2 {
    font-size: clamp(3rem, 13vw, 3.8rem);
  }

  .contact__intro > p {
    font-size: 0.86rem;
  }

  .contact__facts {
    flex-direction: column;
    gap: 14px;
  }

  .contact__facts > a,
  .contact__facts > div {
    min-height: 44px;
  }

  .contact__facts small {
    font-size: 0.63rem;
  }

  .contact__facts strong {
    font-size: 0.78rem;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 12px 24px 50px;
  }

  .field--wide {
    grid-column: auto;
  }

  .quote-form > .button {
    width: 100%;
    justify-self: stretch;
  }

  .contact__image {
    height: 380px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    min-height: 330px;
    padding: 35px 24px 90px;
    text-align: center;
  }

  .footer-brand,
  .socials,
  .footer-words {
    justify-self: center;
  }

  .footer-words {
    padding-right: 0;
  }

  .floating-whatsapp {
    display: flex;
  }

  .lightbox {
    width: calc(100vw - 24px);
  }

  .lightbox__close {
    top: -58px;
  }

  .lightbox__nav {
    top: auto;
    bottom: -62px;
    transform: none;
  }

  .lightbox__nav--prev {
    left: calc(50% - 58px);
  }

  .lightbox__nav--next {
    right: calc(50% - 58px);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Internal SEO navigation */
.footer-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1rem;
  max-width: 34rem;
  align-content: center;
}
.footer-seo-links a {
  color: inherit;
  opacity: .72;
  font-size: .72rem;
  text-decoration: none;
  transition: opacity .2s ease;
}
.footer-seo-links a:hover, .footer-seo-links a:focus-visible { opacity: 1; text-decoration: underline; }
@media (max-width: 700px) {
  .footer-seo-links { justify-content: center; max-width: 100%; }
}

/* SEO service navigation */
.service-card__link{display:inline-flex;align-items:center;gap:7px;margin-top:12px;color:var(--terracotta);font-size:.7rem;font-weight:800;letter-spacing:.08em;text-decoration:none;text-transform:uppercase}.service-card__link span{transition:transform .2s ease}.service-card__link:hover span,.service-card__link:focus-visible span{transform:translateX(4px)}.service-directory{grid-column:1/-1;display:flex;align-items:center;justify-content:center;gap:18px;flex-wrap:wrap;padding:18px 24px 20px;border-top:1px solid rgba(100,80,60,.12);background:#f1e9df}.service-directory span{font-size:.68rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#6d6258}.service-directory a{font-family:"Cormorant Garamond",Georgia,serif;font-size:1.05rem;text-decoration:none;border-bottom:1px solid rgba(165,94,73,.35)}.service-directory a:hover,.service-directory a:focus-visible{color:var(--terracotta);border-color:var(--terracotta)}.section-page-link{display:inline-flex;margin-top:18px}.section-page-links{display:flex;gap:18px;flex-wrap:wrap;margin-top:18px}.section-page-links .text-link{margin:0}@media(max-width:700px){.service-directory{justify-content:flex-start;gap:10px 16px;padding:22px 24px}.service-directory span{flex:0 0 100%}.service-directory a{font-size:1.15rem}.service-card > div{justify-content:center}.service-card__link{font-size:.66rem}}

/* SEO: event-intent navigation */
.intent-directory{grid-column:1/-1;display:flex;align-items:center;justify-content:center;gap:10px 18px;flex-wrap:wrap;padding:22px 26px 24px;background:#252421;color:#f7f3ed;border-top:1px solid rgba(255,255,255,.08)}.intent-directory span{flex:0 0 100%;text-align:center;font-size:.66rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#c7b9aa}.intent-directory a{font-family:"Cormorant Garamond",Georgia,serif;font-size:1.1rem;color:#fff;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.25)}.intent-directory a:hover,.intent-directory a:focus-visible{color:#e1b9a9;border-color:#e1b9a9}@media(max-width:700px){.intent-directory{justify-content:flex-start;padding:24px}.intent-directory span{text-align:left}.intent-directory a{font-size:1.15rem}}


/* Lightweight, horizontally browsable real-work gallery */
.gallery-preview__intro {
  max-width: 570px;
  margin: 10px 0 0;
  color: #6c655d;
  font-size: .72rem;
  line-height: 1.65;
}

.gallery-preview__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 13px;
}

.gallery-preview__arrows {
  display: flex;
  gap: 7px;
}

.gallery-scroll {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(37,36,33,.25);
  border-radius: 50%;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.gallery-scroll:hover,
.gallery-scroll:focus-visible {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #fff;
}

.gallery-preview__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(160px, 26vw, 255px);
  gap: 7px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-preview__rail::-webkit-scrollbar { display: none; }

.gallery-preview__rail button {
  position: relative;
  height: 215px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #ded8d0;
  cursor: zoom-in;
  scroll-snap-align: start;
}

.gallery-preview__rail button:nth-child(3n + 2) { height: 190px; align-self: end; }
.gallery-preview__rail button:nth-child(4n) { height: 205px; }

.gallery-preview__rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease), filter 420ms var(--ease);
}

.gallery-preview__rail button:hover img,
.gallery-preview__rail button:focus-visible img {
  filter: brightness(.91);
  transform: scale(1.035);
}

.gallery-preview__hint {
  margin: 8px 0 0;
  color: #81786f;
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lightbox__counter {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.72);
  font-size: .65rem;
  text-align: center;
}

@media (max-width: 700px) {
  .gallery-preview__actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .gallery-preview__rail {
    margin-right: -18px;
    grid-auto-columns: min(74vw, 280px);
    padding-right: 18px;
  }
  .gallery-preview__rail button,
  .gallery-preview__rail button:nth-child(3n + 2),
  .gallery-preview__rail button:nth-child(4n) {
    height: 330px;
    align-self: auto;
  }
  .gallery-preview__rail button:nth-child(even) { height: 285px; }
}

/* Responsive hardening */
.business__copy,
.business__image,
.business__picture,
.service-card > div,
.weddings__copy,
.gallery-preview,
.contact__intro,
.quote-form {
  min-width: 0;
}

.business__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.business__picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 700px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
  }

  main,
  main > section,
  .business,
  .business__copy,
  .business__image,
  .gallery-preview,
  .services,
  .weddings,
  .contact {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .business__copy {
    padding: 46px 22px 42px;
    overflow: hidden;
  }

  .business__copy .eyebrow {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .business__copy h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.25rem, 10.4vw, 3.05rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .business__copy h2 br {
    display: none;
  }

  .business__copy > p:not(.eyebrow) {
    width: 100%;
    max-width: 34rem;
    margin-top: 18px;
    font-size: 0.91rem;
    line-height: 1.65;
    overflow-wrap: break-word;
  }

  .business__copy .button {
    width: min(100%, 340px);
    max-width: 100%;
    min-height: 52px;
    padding-inline: 20px;
    white-space: normal;
  }

  .section-page-links {
    width: 100%;
    max-width: 100%;
    gap: 8px 20px;
  }

  .section-page-links .text-link {
    max-width: 100%;
    white-space: normal;
  }

  .business__image {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ddd4cb;
  }

  .business__picture,
  .business__picture > img {
    width: 100%;
    height: 100%;
  }

  .business__picture > img {
    object-fit: cover;
    object-position: center center;
  }

  .paper-note {
    right: 10px;
    bottom: 10px;
    width: 112px;
    height: 102px;
    padding: 8px;
    font-size: 1rem;
    line-height: 0.98;
  }

  .service-card,
  .service-card > div,
  .service-card img {
    min-width: 0;
  }

  .service-card h3,
  .service-card p,
  .service-card__link,
  .service-directory a,
  .intent-directory a,
  .footer-seo-links a {
    overflow-wrap: break-word;
  }

  .weddings__copy h2,
  .essence__copy h2,
  .services__intro h2,
  .gallery-preview__heading h2,
  .contact__intro h2 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .button,
  .text-link {
    max-width: 100%;
  }

  img,
  picture,
  svg,
  video {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .business__copy {
    padding-inline: 20px;
  }

  .business__copy h2 {
    font-size: clamp(2.15rem, 10vw, 2.7rem);
  }

  .section-page-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .business__image {
    aspect-ratio: 1.28 / 1;
  }
}

@media (max-width: 360px) {
  .business__copy {
    padding: 40px 18px 38px;
  }

  .business__copy h2 {
    font-size: 2.08rem;
    line-height: 1;
  }

  .business__copy .button {
    width: 100%;
    font-size: 0.8rem;
  }

  .service-card,
  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(even) img {
    order: 0;
  }

  .service-card img {
    width: 100%;
    height: 220px;
    min-height: 0;
  }

  .service-card > div {
    min-height: 0;
    padding: 22px 18px 24px;
  }
}
