:root {
  --bg:       #FDFBF8;
  --cream:    #F5EFE8;
  --sand:     #E6DCD0;
  --charcoal: #2E2A27;
  --text:     #5C524A;
  --text-lt:  #8A7F75;
  --gold:     #B09E84;
  --gold-lt:  #C8B89E;
  --rose:     #C4A0A0;
  --rose-dk:  #B58B8B;
  --lilac:    #D0C4DE;
  --white:    #ffffff;

  --serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:   'DM Sans', 'Segoe UI', system-ui, sans-serif;

  --maxw:   1140px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 12px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  line-height: 1.75;
  background: var(--bg);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--charcoal);
  line-height: 1.25;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 60px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all .35s ease;
  cursor: pointer;
}
.btn--primary {
  background: var(--rose);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--rose-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,160,160,.3);
}
.btn--outline {
  border: 1px solid var(--sand);
  color: var(--text);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}
.anim {
  opacity: 0;
  transition: opacity .8s ease, transform .8s ease;
}
.anim[data-anim="fade-up"]   { transform: translateY(30px); }
.anim[data-anim="fade-left"] { transform: translateX(30px); }
.anim[data-anim="fade-right"]{ transform: translateX(-30px); }
.anim.visible {
  opacity: 1;
  transform: none;
}
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s, box-shadow .4s, padding .3s;
  padding: 20px var(--gutter);
}
.header.scrolled {
  background: rgba(253, 251, 248, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
  padding-top: 14px;
  padding-bottom: 14px;
}
.header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  height: 36px;
  width: auto;
  transition: opacity .3s, filter .3s;
  filter: brightness(0.2);
}
.header__logo:hover img { opacity: .7; }

.header__nav {
  display: flex;
  gap: 36px;
}
.header__nav a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header__social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.header__social a {
  color: var(--text);
  transition: color .3s;
}
.header__social a:hover { color: var(--rose); }
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px 0;
}
.header__burger span {
  display: block;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all .35s ease;
}
.header__burger.open span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 50vh;
  z-index: 90;
  background: var(--bg);
  box-shadow: 0 4px 30px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding-top: 70px;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-menu__nav a {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--charcoal);
  transition: color .3s;
}
.mobile-menu__nav a:hover { color: var(--rose); }
.mobile-menu__social {
  display: flex;
  gap: 24px;
}
.mobile-menu__social a {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-lt);
  transition: color .3s;
}
.mobile-menu__social a:hover { color: var(--rose); }
.hero {
  padding: clamp(120px, 14vh, 160px) var(--gutter) clamp(60px, 8vh, 100px);
  background: var(--cream);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__tagline {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.hero__desc {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--text-lt);
  margin-bottom: 28px;
  max-width: 420px;
}
.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-lt);
  margin-bottom: 28px;
}
.hero__location svg { opacity: .6; }

.hero__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero__photo img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}
.hero__photo::after {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  z-index: -1;
}
.about {
  padding: clamp(80px, 10vw, 120px) var(--gutter);
}
.about__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about__photo {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about__photo::after {
  content: '';
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  z-index: -1;
}
.about__photo img {
  width: 100%;
  border-radius: var(--radius);
}
.about__text h2 {
  margin-bottom: 24px;
}
.about__text p {
  font-size: .9rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 14px;
}
.about__badges {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}
.badge {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 16px;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color .3s;
}
.badge:hover { border-color: var(--rose); }
.badge__num {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--rose);
}
.badge__label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-lt);
}
.services {
  padding: clamp(80px, 10vw, 120px) var(--gutter);
  background: var(--cream);
}
.services__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.services__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.services__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.services__grid .svc-card {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 260px;
}

.svc-card {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  transition: all .4s ease;
  cursor: pointer;
}
.svc-card:hover {
  border-color: var(--rose);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(180,139,139,.1);
}
.svc-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--rose);
}
.svc-card__icon svg {
  width: 100%;
  height: 100%;
}
.svc-card__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.svc-card__desc {
  font-size: .83rem;
  color: var(--text-lt);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.svc-card__link {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s;
}
.svc-card:hover .svc-card__link { gap: 10px; }
.portfolio {
  padding: clamp(80px, 10vw, 120px) var(--gutter);
}
.portfolio__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.portfolio__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.port-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 3 / 4;
}
.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.port-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(46,42,39,.15);
  opacity: 0;
  transition: opacity .4s;
  border-radius: var(--radius);
}
.port-item:hover img { transform: scale(1.05); }
.port-item:hover::after { opacity: 1; }
.port-item--mobile { display: none; }
@media (max-width: 768px) {
  .port-item--mobile { display: block; }
  .port-item--desktop { display: none; }
}

.portfolio__more {
  text-align: center;
  margin-top: 48px;
}
.reviews {
  padding: clamp(80px, 10vw, 120px) var(--gutter);
  background: var(--cream);
  overflow: hidden;
}
.reviews__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.reviews__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 56px);
}

.reviews__viewport {
  overflow: hidden;
}

.reviews__track {
  display: flex;
  gap: 24px;
  transition: transform .5s ease;
}

.rev-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .rev-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 639px) {
  .rev-card { flex: 0 0 100%; }
}
.rev-card__stars {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.rev-card__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--charcoal);
  flex: 1;
  margin-bottom: 20px;
}
.rev-card__name {
  font-family: var(--sans);
  font-style: normal;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
}

.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.reviews__btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all .3s;
}
.reviews__btn:hover {
  border-color: var(--rose);
  color: var(--rose);
}
.reviews__dots {
  display: flex;
  gap: 8px;
}
.reviews__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sand);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.reviews__dot.active {
  background: var(--rose);
  transform: scale(1.2);
}
.footer {
  background: var(--charcoal);
  padding: 56px var(--gutter) 32px;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: start;
}
.footer__logo {
  height: 28px;
  width: auto;
  margin-bottom: 12px;
}
.footer__loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}
.footer__loc svg { opacity: .5; }

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav a {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  transition: color .3s;
}
.footer__nav a:hover { color: var(--rose); }

.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  color: rgba(255,255,255,.35);
  transition: color .3s;
}
.footer__social a:hover { color: var(--rose); }

.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__bottom p {
  font-size: .65rem;
  color: rgba(255,255,255,.2);
}
.footer__credit a {
  color: rgba(176,158,132,.45);
  transition: color .3s;
}
.footer__credit a:hover { color: var(--gold); }
.page-top {
  padding: 140px var(--gutter) 56px;
  text-align: center;
  background: var(--cream);
}
.page-top--bg {
  position: relative;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  padding: 160px var(--gutter) 72px;
}
.page-top--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46,42,39,.55) 0%, rgba(46,42,39,.7) 100%);
}
.page-top--bg > * { position: relative; z-index: 1; }
.page-top--bg h1 { color: var(--white); }
.page-top--bg p { color: rgba(255,255,255,.7); }
.page-top--bg .page-top__back { color: rgba(255,255,255,.6); }
.page-top--bg .page-top__back:hover { color: var(--white); }
.page-top--bg .page-top__back svg { stroke: rgba(255,255,255,.6); }
.page-top__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 24px;
  transition: color .3s;
}
.page-top__back:hover { color: var(--rose); }
.page-top h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.page-top p {
  font-size: .88rem;
  color: var(--text-lt);
}
.pricing-section {
  padding: 64px var(--gutter) 72px;
  max-width: 700px;
  margin: 0 auto;
}
.pricing-section__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.pricing-section__year {
  text-align: center;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .35em;
  color: var(--rose);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.pricing-section__year::before,
.pricing-section__year::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--rose);
  opacity: .35;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--sand);
}
.price-row__name { font-size: .95rem; color: var(--charcoal); font-weight: 400; }
.price-row__price {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--rose-dk);
  white-space: nowrap;
  margin-left: 16px;
  font-weight: 500;
}
.pricing-note {
  font-size: .8rem;
  color: var(--text-lt);
  margin-top: 20px;
  line-height: 1.75;
  font-style: italic;
}
.packages-section {
  padding: 64px var(--gutter) 72px;
  max-width: 880px;
  margin: 0 auto;
}
.pkg-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 44px 40px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.pkg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 36px; right: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  opacity: .35;
}
.pkg-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.pkg-card p {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 14px;
}
.pkg-card ul {
  margin: 14px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pkg-card li {
  font-size: .9rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.8;
}
.pkg-card li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--rose);
}
.pkg-card__price {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--rose-dk);
  margin-top: 16px;
  font-weight: 500;
}
.pkg-card__detail {
  font-size: .8rem;
  color: var(--text-lt);
  margin-top: 10px;
  line-height: 1.75;
}
.info-block {
  padding: 64px var(--gutter);
  max-width: 780px;
  margin: 0 auto;
}
.info-block h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.info-block p {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 16px;
}
.info-block ul {
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-block li {
  font-size: .9rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.8;
}
.info-block li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--rose);
}
.tips-section {
  padding: 64px var(--gutter) 72px;
  max-width: 700px;
  margin: 0 auto;
}
.tips-section h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 40px;
}
.tip-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--sand);
}
.tip-row__num {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--rose);
}
.tip-row__text {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.85;
}
.tip-row__text strong {
  color: var(--charcoal);
  font-weight: 500;
}
.sub-gallery-section {
  padding: 64px var(--gutter) 72px;
  background: var(--cream);
}
.sub-gallery-section__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.sub-gallery-section h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 40px;
}
.sub-gallery-section .portfolio__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.portfolio__grid--2col {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 700px;
  margin: 0 auto;
}
.port-item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 3 / 2;
}
@media (min-width: 769px) {
  .port-item--wide {
    aspect-ratio: 5 / 2;
  }
}
.sub-cta-section {
  padding: 64px var(--gutter);
  text-align: center;
  background: var(--charcoal);
}
.sub-cta-section h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.sub-cta-section p {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 28px;
}
.sub-cta-section__links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 60px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all .35s ease;
}
.cta-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.cta-btn--filled {
  background: var(--rose);
  color: var(--white);
}
.cta-btn--filled:hover {
  background: var(--rose-dk);
  transform: translateY(-2px);
}
.cta-btn--ghost {
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.65);
}
.cta-btn--ghost:hover {
  border-color: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}
.sub-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px var(--gutter);
}
.sub-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.sub-footer .header__logo img {
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: .6;
}
.sub-footer nav {
  display: flex;
  gap: 20px;
}
.sub-footer nav a {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  transition: color .3s;
}
.sub-footer nav a:hover { color: var(--rose); }
.sub-footer__copy {
  font-size: .62rem;
  color: rgba(255,255,255,.18);
}
.sub-footer__copy a {
  color: rgba(176,158,132,.4);
  transition: color .3s;
}
.sub-footer__copy a:hover { color: var(--gold); }
.coming-soon-section {
  padding: 100px var(--gutter);
  text-align: center;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.coming-soon-section h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.coming-soon-section p {
  font-size: .88rem;
  color: var(--text-lt);
  max-width: 440px;
  margin-bottom: 28px;
}
@media (max-width: 1024px) {
  .services__grid .svc-card {
    flex: 0 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .header__nav,
  .header__social { display: none; }
  .header__burger { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content { align-items: center; }
  .hero__desc { max-width: none; }
  .hero__photo { max-width: 400px; margin: 0 auto; }
  .hero__photo::after { display: none; }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__photo::after { display: none; }
  .about__badges { justify-content: center; }

  .services__grid .svc-card {
    flex: 0 1 100%;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .footer__social { justify-content: center; }
  .footer__bottom {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }

  .sub-gallery-section .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .sub-footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .portfolio__grid { grid-template-columns: 1fr; }
  .about__badges { flex-direction: column; }
  .badge { flex-direction: row; justify-content: center; padding: 14px 20px; }
  .sub-gallery-section .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-card { padding: 28px 22px; }
  .hero__photo { max-width: 320px; }
}
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--charcoal);
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -2px 12px rgba(0,0,0,.1);
}
.cookie-bar p {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin: 0;
  text-align: center;
}
.cookie-bar__btn {
  background: var(--rose);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 60px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: background .3s;
}
.cookie-bar__btn:hover {
  background: var(--rose-dk);
}
.cookie-bar--hidden {
  display: none;
}
