:root {
  --cream: #fbf7f1;
  --cream-deep: #f3e9dd;
  --paper: #fffdf9;
  --rose: #b97d76;
  --rose-dark: #8f5c57;
  --rose-light: #ead5cf;
  --brown: #3f302c;
  --brown-soft: #745f58;
  --gold: #c5a46d;
  --line: #e8dcd1;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(83, 57, 50, 0.12);
  --shadow-soft: 0 12px 32px rgba(83, 57, 50, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --font-title: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--brown);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(185, 125, 118, 0.38);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--brown);
  font-family: var(--font-title);
  line-height: 1.12;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.3rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

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

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  color: var(--white);
  background: var(--brown);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(63, 48, 44, 0.06);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  line-height: 1.05;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--rose-light);
  border-radius: 50%;
  color: var(--rose-dark);
  background: var(--cream);
}

.brand-mark svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-title);
  font-size: 1.18rem;
}

.brand small {
  margin-top: 5px;
  color: var(--brown-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 27px;
}

.main-nav a {
  position: relative;
  color: var(--brown-soft);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  background: var(--rose);
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--rose-dark);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--brown);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid var(--rose-dark);
  border-radius: 999px;
  color: var(--white);
  background: var(--rose-dark);
  box-shadow: 0 10px 24px rgba(143, 92, 87, 0.2);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #7d4c48;
  box-shadow: 0 14px 30px rgba(143, 92, 87, 0.28);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.8rem;
}

.button-small svg {
  width: 17px;
}

.button-outline {
  color: var(--rose-dark);
  background: transparent;
  box-shadow: none;
}

.button-outline:hover {
  color: var(--white);
}

.button-light {
  border-color: var(--white);
  color: var(--rose-dark);
  background: var(--white);
  box-shadow: none;
}

.button-light:hover {
  color: var(--rose-dark);
  background: var(--cream);
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--rose);
  color: var(--rose-dark);
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  border-color: var(--brown);
  color: var(--brown);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  align-items: center;
  gap: 8px;
  color: var(--rose-dark);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.4;
}

.eyebrow-light {
  color: #f7e9e4;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 80px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(234, 213, 207, 0.5), transparent 27%),
    linear-gradient(135deg, var(--paper), var(--cream));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 0.94fr 1.06fr;
  gap: clamp(50px, 8vw, 100px);
}

.hero-copy {
  padding: 34px 0;
}

.hero-text {
  max-width: 570px;
  margin-bottom: 32px;
  color: var(--brown-soft);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero-benefits {
  display: flex;
  margin: 38px 0 0;
  padding: 25px 0 0;
  gap: 25px;
  border-top: 1px solid var(--line);
  color: var(--brown-soft);
  font-size: 0.82rem;
  font-weight: 600;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-benefits span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--rose-dark);
  background: var(--rose-light);
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  padding: 16px 0 32px;
}

.hero-image-wrap {
  position: relative;
  max-width: 570px;
  margin-left: auto;
}

.hero-image-wrap::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: -18px;
  width: 74%;
  height: 82%;
  border: 1px solid var(--gold);
  border-radius: 48% 48% 22px 48%;
  content: "";
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  border-radius: 48% 48% 24px 48%;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.stitch-line {
  position: absolute;
  right: -27px;
  bottom: 37px;
  width: 85px;
  height: 85px;
  border: 1px dashed var(--rose);
  border-radius: 50%;
}

.hero-note {
  position: absolute;
  bottom: 2px;
  left: -45px;
  display: flex;
  max-width: 230px;
  padding: 16px 20px;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(232, 220, 209, 0.8);
  border-radius: 17px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.hero-note p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.76rem;
  line-height: 1.45;
}

.hero-note strong {
  display: block;
  color: var(--brown);
  font-size: 0.84rem;
}

.hero-note-icon {
  color: var(--gold);
  font-size: 1.7rem;
}

.hero-decor {
  position: absolute;
  border: 1px dashed rgba(185, 125, 118, 0.38);
  border-radius: 50%;
}

.hero-decor-one {
  top: 20%;
  left: -105px;
  width: 210px;
  height: 210px;
}

.hero-decor-two {
  right: -35px;
  bottom: -90px;
  width: 210px;
  height: 210px;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-grid > div {
  display: flex;
  min-height: 116px;
  padding: 25px 30px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border: 0;
}

.trust-icon {
  font-family: var(--font-title);
  color: var(--gold);
  font-size: 1.45rem;
}

.trust-grid p,
.trust-grid strong,
.trust-grid small {
  display: block;
  margin: 0;
}

.trust-grid strong {
  font-family: var(--font-title);
  font-size: 1.05rem;
}

.trust-grid small {
  margin-top: 2px;
  color: var(--brown-soft);
  font-size: 0.73rem;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 55px;
}

.section-heading p {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--brown-soft);
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered p {
  margin-inline: auto;
}

.heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
}

.heading-row > div {
  max-width: 650px;
}

.heading-row > p {
  max-width: 390px;
  padding-bottom: 12px;
}

.services {
  background:
    radial-gradient(circle at 100% 0, rgba(234, 213, 207, 0.38), transparent 25%),
    var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 27px 24px 25px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 25px rgba(83, 57, 50, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  position: absolute;
  top: -45px;
  right: -45px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  content: "";
  background: var(--cream);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--rose-light);
  box-shadow: var(--shadow-soft);
}

.service-card:hover::before {
  transform: scale(1.35);
}

.service-icon {
  position: relative;
  display: grid;
  width: 53px;
  height: 53px;
  margin-bottom: 27px;
  place-items: center;
  border-radius: 16px;
  color: var(--rose-dark);
  background: var(--cream);
}

.service-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  margin-bottom: 22px;
  color: var(--brown-soft);
  font-size: 0.84rem;
  line-height: 1.6;
}

.service-price {
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--rose-dark);
  font-size: 0.76rem;
  font-weight: 700;
}

.service-price small {
  display: block;
  margin-top: 2px;
  color: #9b8b84;
  font-size: 0.64rem;
  font-weight: 500;
}

.section-footnote {
  margin: 33px 0 0;
  color: var(--brown-soft);
  text-align: center;
}

.section-footnote a {
  color: var(--rose-dark);
  font-weight: 700;
}

.gallery-section {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(83, 57, 50, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.gallery-image {
  position: relative;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-card:hover .gallery-image img {
  transform: scale(1.03);
}

.gallery-tag {
  position: absolute;
  top: 17px;
  left: 17px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--rose-dark);
  background: rgba(255, 253, 249, 0.92);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.gallery-body {
  padding: 25px 25px 27px;
}

.gallery-body h3 {
  margin-bottom: 8px;
}

.gallery-body p {
  margin-bottom: 0;
  color: var(--brown-soft);
  font-size: 0.83rem;
}

.prices-section {
  background:
    radial-gradient(circle at 0 100%, rgba(234, 213, 207, 0.45), transparent 28%),
    var(--paper);
}

.prices-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 9vw, 120px);
}

.prices-copy > p {
  max-width: 440px;
  color: var(--brown-soft);
}

.prices-callout {
  display: flex;
  max-width: 440px;
  margin: 28px 0 30px;
  padding: 18px;
  align-items: flex-start;
  gap: 12px;
  border-left: 3px solid var(--gold);
  background: var(--cream);
}

.prices-callout svg {
  width: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--rose-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.prices-callout p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.78rem;
}

.price-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-card-top {
  display: flex;
  padding: 26px 32px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: var(--rose-dark);
}

.price-card-top strong {
  font-family: var(--font-title);
  font-size: 1.3rem;
}

.price-card-top span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-list {
  padding: 12px 32px 20px;
}

.price-row {
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px dashed var(--line);
}

.price-row:last-child {
  border: 0;
}

.price-row span {
  color: var(--brown-soft);
  font-size: 0.88rem;
}

.price-row strong {
  color: var(--rose-dark);
  font-size: 0.82rem;
}

.about-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 130px);
}

.about-visual {
  position: relative;
}

.about-card {
  display: flex;
  min-height: 440px;
  padding: 55px 45px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rose-light);
  border-radius: 48% 48% 26px 26px;
  color: var(--rose-dark);
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.about-card svg {
  width: 190px;
  margin-bottom: 35px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.about-card p {
  max-width: 260px;
  margin: 0;
  font-family: var(--font-title);
  font-size: 1.55rem;
  line-height: 1.35;
}

.thread {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 1px dashed var(--gold);
  border-radius: 50%;
}

.thread-one {
  z-index: -1;
  top: -35px;
  left: -35px;
}

.thread-two {
  right: -45px;
  bottom: -45px;
}

.about-copy > div p {
  color: var(--brown-soft);
}

.about-list {
  display: grid;
  margin: 28px 0 32px;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brown-soft);
  font-size: 0.85rem;
  font-weight: 600;
}

.about-list span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--rose-dark);
  background: var(--rose-light);
  font-size: 0.65rem;
}

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

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  position: relative;
  padding: 32px 28px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 25px rgba(83, 57, 50, 0.04);
}

.quote-mark {
  color: var(--rose-light);
  font-family: var(--font-title);
  font-size: 4.4rem;
  line-height: 0.65;
}

.stars {
  margin: 20px 0 14px;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.testimonial-card blockquote {
  min-height: 105px;
  margin: 0 0 25px;
  color: var(--brown-soft);
  font-size: 0.9rem;
  line-height: 1.75;
}

.testimonial-author {
  display: flex;
  padding-top: 18px;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.testimonial-initial {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  color: var(--rose-dark);
  background: var(--cream);
  font-family: var(--font-title);
  font-weight: 700;
}

.testimonial-author strong,
.testimonial-author small {
  display: block;
}

.testimonial-author strong {
  font-size: 0.8rem;
}

.testimonial-author small {
  color: var(--brown-soft);
  font-size: 0.68rem;
}

.contact-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 5% 5%, rgba(255, 255, 255, 0.11), transparent 28%),
    var(--rose-dark);
}

.contact-section::before {
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 330px;
  height: 330px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.contact-wrap {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 10vw, 130px);
}

.contact-copy {
  padding-top: 30px;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p {
  max-width: 450px;
  margin-bottom: 30px;
  color: #f1dbd7;
}

.contact-details {
  display: grid;
  margin: 38px 0 0;
  padding: 30px 0 0;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
}

.contact-detail dt {
  color: #e6c8c3;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail dd {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-detail a {
  transition: color 0.2s ease;
}

.contact-detail a:hover {
  color: var(--cream-deep);
}

.contact-form {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-lg);
  color: var(--brown);
  background: var(--paper);
  box-shadow: 0 30px 70px rgba(61, 36, 34, 0.2);
}

.form-heading {
  margin-bottom: 26px;
}

.form-heading span {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-title);
  font-size: 1.55rem;
  font-weight: 700;
}

.form-heading p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.78rem;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--brown-soft);
  font-size: 0.71rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--brown);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(185, 125, 118, 0.12);
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form small {
  display: block;
  margin-top: 12px;
  color: #998983;
  font-size: 0.64rem;
  text-align: center;
}

.site-footer {
  padding: 55px 0 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-main {
  display: grid;
  padding-bottom: 38px;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.footer-main > p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.75rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  color: var(--brown-soft);
  font-size: 0.75rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--rose-dark);
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #998983;
  font-size: 0.67rem;
}

.footer-bottom a:hover {
  color: var(--rose-dark);
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: #3b9d63;
  box-shadow: 0 10px 28px rgba(36, 101, 63, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.floating-whatsapp svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.reveal,
.service-card,
.gallery-card,
.testimonial-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@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,
  .service-card,
  .gallery-card,
  .testimonial-card {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .main-nav {
    gap: 22px;
  }

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

  .service-card {
    min-height: 270px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 84px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .main-nav {
    position: fixed;
    z-index: 99;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    margin: 0;
    padding: 0 20px;
    gap: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
  }

  .main-nav.open {
    max-height: 430px;
    padding: 12px 20px 22px;
    opacity: 1;
    box-shadow: 0 15px 30px rgba(63, 48, 44, 0.1);
  }

  .main-nav a {
    padding: 13px 5px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 75px;
  }

  .hero-grid,
  .prices-layout,
  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 35px;
  }

  .hero-copy {
    max-width: 650px;
    padding: 0;
  }

  .hero-image-wrap {
    max-width: 620px;
    margin: 0 auto;
  }

  .hero-image-wrap img {
    aspect-ratio: 1.35 / 1;
    border-radius: 28px 28px 28px 90px;
  }

  .hero-image-wrap::before {
    border-radius: 28px 28px 28px 90px;
  }

  .hero-note {
    left: 20px;
  }

  .trust-grid > div {
    padding: 22px 16px;
  }

  .heading-row {
    display: block;
  }

  .heading-row > p {
    max-width: 600px;
    padding: 0;
  }

  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-card:last-child,
  .testimonial-card:last-child {
    grid-column: 1 / -1;
  }

  .testimonial-card blockquote {
    min-height: auto;
  }

  .prices-layout,
  .about-grid,
  .contact-wrap {
    gap: 55px;
  }

  .about-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .contact-copy {
    padding-top: 0;
  }

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

  .footer-main > p {
    display: none;
  }
}

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

  .section {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.75rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 44px;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

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

  .hero-actions .text-link {
    align-self: center;
  }

  .hero-benefits {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    padding-bottom: 55px;
  }

  .hero-image-wrap img {
    aspect-ratio: 1 / 1;
    border-radius: 24px 24px 24px 65px;
  }

  .hero-image-wrap::before {
    right: -9px;
    border-radius: 24px 24px 24px 65px;
  }

  .hero-note {
    right: 16px;
    bottom: 5px;
    left: 16px;
    max-width: none;
  }

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

  .trust-grid > div {
    min-height: 90px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    margin-bottom: 38px;
  }

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

  .gallery-card:last-child,
  .testimonial-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 250px;
  }

  .price-card {
    border-radius: var(--radius-md);
  }

  .price-card-top,
  .price-list {
    padding-right: 20px;
    padding-left: 20px;
  }

  .price-row {
    gap: 15px;
  }

  .price-row span,
  .price-row strong {
    font-size: 0.75rem;
  }

  .about-card {
    min-height: 365px;
    padding: 45px 25px;
  }

  .about-card svg {
    width: 145px;
  }

  .contact-section {
    padding: 70px 0;
  }

  .contact-form {
    padding: 26px 20px;
    border-radius: var(--radius-md);
  }

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

  .footer-main {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}
