/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #0d0c0c;
  color: #f0ebe3;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #0d0c0c; }
::-webkit-scrollbar-thumb { background: #b8966e; border-radius: 2px; }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.91);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── Keyframes ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0) translateX(-50%); }
  50%     { transform: translateY(-9px) translateX(-50%); }
}
@keyframes floatSimple {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-9px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes spin-slow-reverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
@keyframes grain-move {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-4%,-4%); }
  40%  { transform: translate(4%, 4%); }
  60%  { transform: translate(-4%, 4%); }
  80%  { transform: translate(4%,-4%); }
  100% { transform: translate(0,0); }
}

.anim-fadeInUp  { animation: fadeInUp 1s ease both; }
.anim-fadeIn    { animation: fadeIn 1.2s ease both; }
.anim-float     { animation: float 4s ease-in-out infinite; }
.anim-float-simple { animation: floatSimple 4s ease-in-out infinite; }
.anim-spin-slow { animation: spin-slow 22s linear infinite; }
.anim-spin-slow-r { animation: spin-slow-reverse 28s linear infinite; }
.anim-marquee   { animation: marquee 32s linear infinite; }

.d100 { animation-delay: .1s; }
.d200 { animation-delay: .2s; }
.d300 { animation-delay: .3s; }
.d400 { animation-delay: .4s; }
.d500 { animation-delay: .5s; }
.d600 { animation-delay: .6s; }
.d700 { animation-delay: .7s; }

/* ── Grain overlay ── */
.grain::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-move 6s steps(8) infinite;
}

/* ── Gold gradient text ── */
.gold-text {
  background: linear-gradient(135deg, #c9a96e 0%, #f0d090 45%, #b8966e 75%, #e8c07a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,110,.5), transparent);
}

/* ── Navbar ── */
nav.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(13,12,12,.96) 0%, transparent 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .navbar-inner { padding: 1.25rem 3.5rem; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  position: relative;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8a7e6e;
  transition: color .3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: #b8966e;
  transition: width .3s ease;
}
.nav-link:hover { color: #f0ebe3; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: #b8966e; }
.nav-link.active::after { width: 100%; }

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.logo-diamond {
  border: 1px solid #b8966e;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .5s ease;
  width: 32px; height: 32px;
}
.logo:hover .logo-diamond { transform: rotate(0deg); }
.logo-dot {
  background: #b8966e;
  transform: rotate(45deg);
  width: 8px; height: 8px;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: .22em;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #c9a96e 0%, #f0d090 45%, #b8966e 75%, #e8c07a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Burger ── */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 51;
  background: none;
  border: none;
  padding: 4px;
}
@media (min-width: 768px) { .burger { display: none; } }

.burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: #b8966e;
  transition: all .3s ease;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ── Mobile overlay ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  background: rgba(13,12,12,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}
.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: #f0ebe3;
  transition: color .3s ease;
}
.mobile-menu a:hover { color: #b8966e; }

/* ── Buttons ── */
.btn-outline {
  position: relative;
  overflow: hidden;
  border: 1px solid #b8966e;
  color: #b8966e;
  transition: color .4s ease;
  display: inline-block;
  cursor: pointer;
}
.btn-outline::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #b8966e, #e8c07a);
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.btn-outline:hover::before { transform: translateX(0); }
.btn-outline:hover { color: #0d0c0c; }
.btn-outline span { position: relative; z-index: 1; }

.btn-solid {
  background: linear-gradient(135deg, #b8966e 0%, #e8c07a 50%, #b8966e 100%);
  background-size: 200% auto;
  color: #0d0c0c;
  transition: background-position .4s ease, transform .2s ease, box-shadow .3s ease;
  display: inline-block;
  cursor: pointer;
}
.btn-solid:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184,150,110,.4);
}

.btn-text {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 2.25rem;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.5) saturate(.85);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,12,12,.65) 0%, transparent 55%),
              linear-gradient(to top, rgba(13,12,12,1) 0%, rgba(13,12,12,.35) 40%, transparent 65%);
}
.hero-ring {
  position: absolute;
  top: 25%;
  right: 2rem;
  border-radius: 50%;
  pointer-events: none;
}
@media (min-width: 768px) { .hero-ring { right: 5rem; } }

.hero-content {
  position: relative;
  z-index: 10;
  padding: 2rem 2rem 6rem;
  max-width: 62rem;
}
@media (min-width: 768px) {
  .hero-content { padding: 2rem 5rem 9rem; }
}

.hero-label {
  color: #b8966e;
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 1.5rem;
  display: block;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
  font-size: clamp(3.2rem, 9.5vw, 8rem);
}
.hero-sub {
  color: #9a8e7e;
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 22rem;
  margin-bottom: 2.5rem;
  letter-spacing: .03em;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}
.scroll-hint span {
  color: #b8966e;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, #b8966e, transparent);
}

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid rgba(184,150,110,.18);
  border-bottom: 1px solid rgba(184,150,110,.18);
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 300;
  flex-shrink: 0;
  color: #302a24;
}
.marquee-item.star { color: #b8966e; }

/* ── ABOUT ── */
#about {
  padding: 6rem 1.5rem;
}
@media (min-width: 768px) { #about { padding: 9rem 3.5rem; } }
@media (min-width: 1024px) { #about { padding: 9rem 6rem; } }

.about-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 3.5rem 6rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-img-wrap {
  position: relative;
}
.about-img-inner {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-img-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.about-img-inner:hover img { transform: scale(1.04); }
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(13,12,12,.45), transparent 60%);
}
.about-frame {
  position: absolute;
  bottom: -1rem; right: -1rem;
  width: 100%; height: 100%;
  border: 1px solid rgba(184,150,110,.16);
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; left: 1.5rem;
  background: #0d0c0c;
  border: 1px solid rgba(184,150,110,.28);
  padding: 1rem 1.5rem;
  box-shadow: 0 0 28px rgba(184,150,110,.12);
}
.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 300;
}
.about-badge-label {
  color: #7a6e60;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: .25rem;
}

.section-eyebrow {
  color: #b8966e;
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  font-weight: 300;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.about-text {
  color: #8a7e6e;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.stat-item {
  text-align: center;
  border: 1px solid rgba(184,150,110,.14);
  padding: 1.25rem .5rem;
  transition: border-color .3s ease;
}
.stat-item:hover { border-color: rgba(184,150,110,.38); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 300;
}
.stat-label {
  color: #7a6e60;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: .25rem;
}

/* ── SERVICES ── */
#services {
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { #services { padding: 9rem 3.5rem; } }
@media (min-width: 1024px) { #services { padding: 9rem 6rem; } }

.services-bg-glow {
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  border-radius: 50%;
  pointer-events: none;
  opacity: .03;
  transform: translateY(-50%) translateX(50%);
  background: radial-gradient(circle, #b8966e 0%, transparent 70%);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-header .section-title {
  font-size: clamp(3rem, 7vw, 4.5rem);
}
.header-line {
  width: 3.5rem;
  height: 1px;
  background: #b8966e;
  margin: 2rem auto 0;
}

.services-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184,150,110,.14);
  padding: 2rem;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), border-color .4s ease;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,150,110,.09) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(184,150,110,.45) !important;
}
.service-icon {
  color: #b8966e;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: .75rem;
}
.service-desc {
  color: #8a7e6e;
  font-size: .875rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2rem;
}
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
}
.service-dur {
  color: #3a3028;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ── PORTFOLIO ── */
#portfolio {
  padding: 6rem 1.5rem;
}
@media (min-width: 768px) { #portfolio { padding: 9rem 3.5rem; } }
@media (min-width: 1024px) { #portfolio { padding: 9rem 6rem; } }

.portfolio-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .portfolio-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.portfolio-sub {
  color: #8a7e6e;
  font-size: .875rem;
  font-weight: 300;
  max-width: 18rem;
  line-height: 1.6;
}

.portfolio-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.port-wrap {
  overflow: hidden;
  position: relative;
}
.port-wrap.span-row { grid-row: span 2; }
.port-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
  display: block;
}
.port-wrap:hover img { transform: scale(1.08); }
.port-inner { height: 100%; }
.port-inner.tall { aspect-ratio: 3/4; }
.port-inner.normal { aspect-ratio: 4/5; }
.port-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(to top, rgba(13,12,12,.85), transparent);
  transform: translateY(101%);
  transition: transform .4s ease;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #f0ebe3;
}
.port-wrap:hover .port-label { transform: translateY(0); }

/* ── WHY section ── */
#why {
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { #why { padding: 5rem 3.5rem; } }
@media (min-width: 1024px) { #why { padding: 5rem 6rem; } }

.why-dots {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: radial-gradient(circle at 50% 50%, #b8966e 1px, transparent 1px);
  background-size: 44px 44px;
}
.why-grid {
  max-width: 62rem;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  position: relative;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-item { text-align: center; }
.why-icon {
  color: #b8966e;
  font-size: .875rem;
  margin-bottom: 1rem;
  opacity: .5;
}
.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: .75rem;
}
.why-desc {
  color: #8a7e6e;
  font-size: .75rem;
  line-height: 1.6;
  font-weight: 300;
}

/* ── REVIEWS ── */
#reviews {
  padding: 6rem 1.5rem;
}
@media (min-width: 768px) { #reviews { padding: 9rem 3.5rem; } }
@media (min-width: 1024px) { #reviews { padding: 9rem 6rem; } }

.reviews-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  border: 1px solid rgba(184,150,110,.14);
  padding: 2rem;
  transition: border-color .4s ease;
}
.review-card:hover { border-color: rgba(184,150,110,.36); }
.review-stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1.5rem;
}
.review-stars span { color: #b8966e; font-size: .875rem; }
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: #d0c5b4;
  margin-bottom: 2rem;
}
.review-name {
  color: #7a6e60;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ── CTA BANNER ── */
#cta {
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { #cta { padding: 8rem 1.5rem; } }

.cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(184,150,110,.07) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}
.cta-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.cta-line { width: 3rem; height: 1px; background: rgba(184,150,110,.35); }
.cta-label {
  color: #b8966e;
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  font-weight: 300;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.cta-sub {
  color: #8a7e6e;
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── CONTACT ── */
#contact {
  padding: 6rem 1.5rem;
}
@media (min-width: 768px) { #contact { padding: 9rem 3.5rem; } }
@media (min-width: 1024px) { #contact { padding: 9rem 6rem; } }

.contact-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 4rem 6rem;
  align-items: start;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-links { margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; align-items: center; gap: 1.25rem; }
.contact-icon {
  width: 2.5rem; height: 2.5rem;
  border: 1px solid rgba(184,150,110,.22);
  display: flex; align-items: center; justify-content: center;
  color: #b8966e;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label {
  color: #3a3028;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.contact-value {
  color: #f0ebe3;
  font-weight: 300;
  font-size: .875rem;
  transition: color .3s ease;
}
a.contact-value:hover { color: #b8966e; }

.hours-box {
  margin-top: 3rem;
  border: 1px solid rgba(184,150,110,.15);
  padding: 1.75rem;
}
.hours-title {
  color: #b8966e;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 300;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  margin-bottom: .5rem;
}
.hours-days { color: #8a7e6e; font-weight: 300; }
.hours-time { color: #f0ebe3; font-weight: 300; }

/* ── FORM ── */
.form-wrap {
  border: 1px solid rgba(184,150,110,.2);
  padding: 2rem 2.5rem;
  box-shadow: 0 0 40px rgba(184,150,110,.07), inset 0 0 40px rgba(184,150,110,.02);
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 300;
  margin-bottom: .5rem;
}
.form-sub {
  color: #8a7e6e;
  font-size: .75rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8a7e6e;
  margin-bottom: .5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(184,150,110,.18);
  padding: .75rem 1rem;
  color: #f0ebe3;
  font-size: .875rem;
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color .3s ease;
}
.form-input::placeholder, .form-textarea::placeholder { color: #3a3028; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(184,150,110,.55);
}
.form-select {
  background: #0d0c0c;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.form-textarea { resize: none; }
.form-btn {
  width: 100%;
  background: linear-gradient(135deg, #b8966e 0%, #e8c07a 50%, #b8966e 100%);
  background-size: 200% auto;
  color: #0d0c0c;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem;
  cursor: pointer;
  margin-top: .25rem;
  transition: background-position .4s ease, transform .2s ease, box-shadow .3s ease;
}
.form-btn:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184,150,110,.4);
}

/* ── Success state ── */
.form-success {
  text-align: center;
  padding: 4rem 0;
  display: none;
}
.form-success.show { display: block; }
.success-icon {
  color: #b8966e;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: floatSimple 4s ease-in-out infinite;
  display: block;
}
.success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 300;
  margin-bottom: .75rem;
}
.success-sub {
  color: #8a7e6e;
  font-size: .875rem;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(184,150,110,.14);
}
@media (min-width: 768px) { footer { padding: 2.5rem 3.5rem; } }

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-copy {
  color: #2e2820;
  font-size: 10px;
  letter-spacing: .2em;
  text-align: center;
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  gap: 1.75rem;
}
.footer-links a {
  color: #3a3028;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .3s ease;
}
.footer-links a:hover { color: #b8966e; }
