:root {
  --ink: #241725;
  --plum: #3a1744;
  --plum-deep: #2c0d35;
  --violet: #693777;
  --gold: #d6ac68;
  --cream: #fbf7f1;
  --paper: #fffdf9;
  --rose: #b73c73;
  --muted: #766d76;
  --line: rgba(58, 23, 68, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection {
  color: white;
  background: var(--violet);
}

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

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  padding: 0.8rem 1rem;
  color: white;
  background: var(--plum);
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5vw;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}

.site-header.scrolled {
  height: 76px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 8px 30px rgba(44, 13, 53, 0.07);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  background: var(--plum);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
}

.brand-copy,
.footer-brand p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1;
}

.brand-copy strong,
.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 600;
}

.brand-copy small,
.footer-brand small {
  margin-top: 0.25rem;
  letter-spacing: 0.32em;
  font-size: 0.48rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 3vw, 3.1rem);
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.15rem 0.85rem 1.35rem;
  color: white;
  background: var(--plum);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.header-cta svg,
.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 830px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(470px, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  padding: 130px 8vw 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: -7vw;
  bottom: 8%;
  width: 28vw;
  height: 28vw;
  border: 1px solid rgba(105, 55, 119, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(105, 55, 119, 0.025), 0 0 0 140px rgba(105, 55, 119, 0.018);
}

.hero-glow {
  position: absolute;
  right: 6%;
  top: 12%;
  width: 42vw;
  height: 70%;
  background: radial-gradient(circle, rgba(214, 172, 104, 0.18), transparent 64%);
  filter: blur(20px);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.5rem;
  color: var(--violet);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: #dcc99f;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(4rem, 7vw, 7.4rem);
}

.hero h1 em,
.section h2 em {
  color: var(--violet);
  font-weight: 500;
}

.hero-intro {
  width: 100%;
  max-width: 510px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

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

.button-primary {
  color: white;
  background: var(--plum);
}

.button-primary:hover {
  background: var(--violet);
}

.button-light {
  color: var(--plum);
  background: white;
}

.text-link,
.whatsapp-link {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
}

.text-link span {
  margin-left: 0.5rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 3rem;
}

.note-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(214, 172, 104, 0.45);
  border-radius: 50%;
}

.hero-note p {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0;
  font-size: 0.77rem;
}

.hero-note small {
  color: var(--muted);
  font-size: 0.7rem;
}

.hero-visual {
  max-width: 620px;
  justify-self: end;
}

.hero-image-wrap {
  position: relative;
  height: min(68vh, 650px);
  min-height: 530px;
  overflow: hidden;
  border-radius: 48% 48% 4px 4px;
  box-shadow: 0 28px 70px rgba(41, 14, 47, 0.18);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(35, 12, 39, 0.32));
}

.hero-image-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.offer-card {
  position: absolute;
  left: -70px;
  bottom: 80px;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(58, 23, 68, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 16px 35px rgba(44, 13, 53, 0.26);
  backdrop-filter: blur(12px);
}

.offer-card > span {
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offer-card strong {
  margin: 0.15rem 0;
  font-family: var(--serif);
  font-size: 3.7rem;
  font-weight: 500;
  line-height: 1;
}

.offer-card strong small {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.offer-card p {
  margin: 0;
  color: #e5d1a7;
  font-size: 0.63rem;
}

.portrait-caption {
  position: absolute;
  right: 0;
  bottom: -35px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.portrait-caption > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.portrait-caption p {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.45;
}

.portrait-caption small {
  color: var(--muted);
  font-weight: 400;
}

.hero-flower {
  position: absolute;
  right: -98px;
  bottom: -45px;
  width: 135px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  opacity: 0.7;
}

.ticker {
  overflow: hidden;
  padding: 1.15rem 0;
  color: white;
  background: var(--plum);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: ticker 28s linear infinite;
}

.ticker span {
  padding: 0 2.2rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}

.ticker i {
  color: var(--gold);
  font-style: normal;
  font-size: 0.65rem;
}

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

.section {
  padding: clamp(5.5rem, 9vw, 9rem) 8vw;
}

.section-heading h2,
.gallery-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(3rem, 5vw, 5.6rem);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

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

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.7fr);
  gap: 4rem;
  margin-top: 4rem;
}

.service-card {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 60px minmax(220px, 0.72fr) minmax(230px, 1fr);
  overflow: hidden;
  color: white;
  background: var(--plum);
}

.service-number {
  padding: 2rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: #d7c7dc;
  text-align: center;
  font-size: 0.68rem;
}

.service-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 3.5rem 2.5rem;
}

.service-kicker {
  margin: 0 0 2rem;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 1.04;
}

.service-description {
  max-width: 330px;
  margin: 1.4rem 0 0;
  color: #d8cadb;
  font-size: 0.83rem;
  line-height: 1.7;
}

.service-price {
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  margin-top: auto;
}

.service-price strong {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 500;
  line-height: 0.8;
}

.service-price span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-price small {
  color: #bfaec3;
  letter-spacing: 0;
  font-weight: 400;
}

.service-content > a {
  width: fit-content;
  margin-top: 2.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.74rem;
  font-weight: 700;
}

.service-content > a span {
  margin-left: 0.8rem;
  color: var(--gold);
}

.service-image {
  min-height: 100%;
  overflow: hidden;
}

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

.benefit-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.3rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list article:first-child {
  border-top: 1px solid var(--line);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--violet);
  border: 1px solid rgba(105, 55, 119, 0.24);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.76rem;
}

.benefit-list h3 {
  margin: 0 0 0.5rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(400px, 0.95fr) minmax(420px, 1fr);
  align-items: center;
  gap: 9vw;
  color: white;
  background: var(--plum-deep);
}

.about-images {
  position: relative;
  min-height: 670px;
}

.about-images figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
}

.about-main {
  left: 0;
  top: 0;
  width: 75%;
  height: 84%;
  border-radius: 48% 48% 2px 2px;
}

.about-detail {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 47%;
  border: 10px solid var(--plum-deep);
}

.about-images img {
  height: 100%;
  object-fit: cover;
}

.about-main img {
  object-position: 53% 30%;
}

.about-detail img {
  object-position: 48% center;
}

.image-badge {
  position: absolute;
  left: 58%;
  top: 12%;
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  color: var(--plum);
  background: var(--gold);
  border: 6px solid var(--plum-deep);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1;
  text-align: center;
  transform: rotate(-8deg);
}

.about-copy h2 em,
.contact-copy h2 em,
.gallery-heading h2 em {
  color: #d9bd83;
}

.about-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 2rem 0 0;
  color: #cabfcd;
  font-size: 0.95rem;
  line-height: 1.85;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.6rem 0;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.about-points > div {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-points > div > span {
  color: var(--gold);
  font-family: var(--serif);
}

.about-points p {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0;
  font-size: 0.8rem;
}

.about-points small {
  color: #a99eac;
  font-size: 0.68rem;
  font-weight: 400;
}

.steps-section {
  background: var(--paper);
}

.section-heading.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5rem;
}

.step {
  position: relative;
  padding: 0 3vw;
  text-align: center;
}

.step > span {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 2rem;
  color: var(--violet);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--serif);
}

.step-line {
  position: absolute;
  left: calc(50% + 50px);
  top: 33px;
  width: calc(100% - 100px);
  border-top: 1px dashed rgba(105, 55, 119, 0.25);
}

.step:last-child .step-line {
  display: none;
}

.step h3 {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
}

.step p {
  max-width: 260px;
  margin: auto;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.gallery-section {
  color: white;
  background: #1e1121;
}

.gallery-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.gallery-heading > p {
  max-width: 390px;
  margin: 0 0 0.5rem;
  color: #afa5b1;
  font-size: 0.82rem;
  line-height: 1.75;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr;
  gap: 1.2rem;
  align-items: end;
  margin-top: 4rem;
}

.gallery-item {
  margin: 0;
}

.gallery-item img {
  height: 410px;
  object-fit: cover;
  filter: saturate(0.78);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.gallery-large img {
  height: 570px;
}

.gallery-item:hover img {
  filter: saturate(1);
}

.gallery-item figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 0.9rem;
  color: #c6bbc8;
  font-size: 0.7rem;
}

.gallery-item figcaption span {
  color: var(--gold);
  font-family: var(--serif);
}

.contact-section {
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(to bottom, #1e1121 50%, var(--cream) 50%);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  color: white;
  background: var(--violet);
  box-shadow: 0 32px 80px rgba(40, 13, 45, 0.18);
}

.contact-copy {
  padding: clamp(3rem, 6vw, 6rem);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 450px;
  color: #dfd3e2;
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.2rem;
}

.whatsapp-link {
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: clamp(3rem, 6vw, 6rem);
  font-style: normal;
}

.contact-details > div {
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-details > div:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-details span {
  display: block;
  margin-bottom: 0.7rem;
  color: #d6c4da;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.45;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 8rem 8vw 3rem;
  background: var(--cream);
  font-size: 0.68rem;
}

footer > p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.footer-meta {
  justify-self: end;
  display: flex;
  gap: 1.4rem;
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: white;
  background: #25d366;
  border: 5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(20, 80, 42, 0.25);
  transition: transform 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }

@media (max-width: 1100px) {
  .site-header {
    padding-inline: 4vw;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.75fr);
    padding-inline: 6vw;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 7vw, 5.5rem);
  }

  .offer-card {
    left: -45px;
    width: 150px;
    height: 150px;
  }

  .offer-card strong {
    font-size: 3rem;
  }

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

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

  .benefit-list article,
  .benefit-list article:first-child {
    display: block;
    padding: 1.4rem;
    border: 1px solid var(--line);
  }

  .benefit-icon {
    margin-bottom: 1rem;
  }

  .about-section {
    gap: 6vw;
  }

  .about-images {
    min-height: 570px;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 74px;
    padding-inline: 1.25rem;
  }

  .site-header.scrolled {
    height: 68px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--plum);
  }

  .menu-button span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: white;
    transition: transform 0.25s ease;
  }

  .menu-button span:first-child { transform: translateY(-3px); }
  .menu-button span:last-child { transform: translateY(3px); }
  .menu-button.open span:first-child { transform: rotate(45deg); }
  .menu-button.open span:last-child { transform: rotate(-45deg); }

  .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.7rem;
    color: white;
    background: rgba(44, 13, 53, 0.98);
    font-family: var(--serif);
    font-size: 2rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 120px 1.25rem 85px;
  }

  .hero::before,
  .hero-flower {
    display: none;
  }

  .hero-copy {
    padding: 0 0.5rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 16vw, 5.8rem);
  }

  .hero-visual {
    width: calc(100% - 1rem);
    max-width: 560px;
    justify-self: center;
  }

  .hero-image-wrap {
    height: 620px;
  }

  .offer-card {
    left: -12px;
    bottom: -48px;
  }

  .portrait-caption {
    right: 0;
    bottom: -65px;
  }

  .section {
    padding: 5.5rem 1.25rem;
  }

  .service-card {
    min-height: auto;
    grid-template-columns: 44px 1fr;
  }

  .service-content {
    padding: 3rem 1.5rem;
  }

  .service-image {
    grid-column: 1 / -1;
    height: 390px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-images {
    width: min(100%, 570px);
    min-height: 650px;
    margin: auto;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .step-line {
    display: none;
  }

  .gallery-heading {
    display: block;
  }

  .gallery-heading > p {
    margin-top: 1.5rem;
  }

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

  .gallery-large {
    grid-column: 1 / -1;
  }

  .gallery-large img,
  .gallery-item img {
    height: 500px;
  }

  .contact-section {
    padding-inline: 1.25rem;
  }

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

  .contact-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  footer {
    grid-template-columns: 1fr 1fr;
    padding: 7rem 1.5rem 2rem;
  }

  footer > p {
    justify-self: end;
  }

  .footer-meta {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 540px) {
  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .hero {
    padding-top: 105px;
  }

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

  .hero-intro {
    font-size: 0.92rem;
  }

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

  .hero-image-wrap {
    height: 490px;
    min-height: 0;
  }

  .offer-card {
    width: 132px;
    height: 132px;
  }

  .offer-card strong {
    font-size: 2.6rem;
  }

  .offer-card p,
  .offer-card > span {
    font-size: 0.57rem;
  }

  .portrait-caption {
    font-size: 0.65rem;
  }

  .section-heading h2,
  .gallery-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .service-layout {
    gap: 2rem;
    margin-top: 3rem;
  }

  .service-card {
    grid-template-columns: 36px 1fr;
  }

  .service-content {
    padding: 2.5rem 1.2rem;
  }

  .service-image {
    height: 330px;
  }

  .about-images {
    min-height: 500px;
  }

  .about-main {
    width: 86%;
  }

  .about-detail {
    width: 52%;
    height: 43%;
    border-width: 7px;
  }

  .image-badge {
    left: 68%;
    width: 82px;
    height: 82px;
    font-size: 1rem;
  }

  .about-points {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .gallery-large {
    grid-column: auto;
  }

  .gallery-large img,
  .gallery-item img {
    height: 430px;
  }

  .contact-copy,
  .contact-details {
    padding: 3rem 1.5rem;
  }

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

  footer {
    grid-template-columns: 1fr;
  }

  footer > p {
    justify-self: start;
  }

  .footer-meta {
    flex-direction: column;
    gap: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
