@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&family=Bebas+Neue&display=swap');

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

:root {
  --bg:          #FDFCFB;
  --bg2:         #FDF6F3;
  --bg3:         #FAF0EC;
  --bg-card:     #FFF9F7;

  --rose:        #C8806A;
  --rose-light:  #F5E6E0;
  --rose-mid:    #E8C4B8;
  --rose-dark:   #A05A46;
  --rose-dim:    rgba(200, 128, 106, 0.12);
  --rose-border: rgba(200, 128, 106, 0.22);

  --charcoal:    #2A1F1C;
  --mid:         #7A6862;
  --muted:       #B0A09A;
  --border:      #EDE5E1;

  --ff-d: 'Cormorant Garamond', Georgia, serif;
  --ff-b: 'DM Sans', sans-serif;
  --ff-l: 'Bebas Neue', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h:  68px;
  --pad:    clamp(80px, 10vw, 130px);
  --gutter: clamp(24px, 5vw, 60px);
  --max:    1280px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--charcoal);
  font-family: var(--ff-b);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; font: inherit; cursor: none; }
::selection { background: var(--rose-light); color: var(--rose-dark); }

.cursor-dot {
  position: fixed; width: 7px; height: 7px;
  background: #D42020; border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 5px rgba(212,32,32,0.9), 0 0 16px rgba(212,32,32,0.4);
}
.cursor-ring {
  position: fixed; width: 30px; height: 30px;
  border: 1px solid rgba(212,32,32,0.25); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease), opacity .3s, border-color .3s;
  opacity: 0.5;
}
.cursor-ring.hov { width: 50px; height: 50px; border-color: rgba(200,128,106,0.5); opacity: 1; }

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(253,252,251,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(42,31,28,0.06); }
.nav-inner {
  width: 100%; max-width: var(--max);
  margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 32px; height: 32px; border: 1.5px solid var(--rose); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.logo-text { font-family: var(--ff-l); font-size: 17px; letter-spacing: .12em; color: var(--charcoal); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--mid); letter-spacing: .04em; transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--rose); transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-size: 13px; color: var(--muted); }
.btn-nav { display: inline-flex; align-items: center; gap: 7px; padding: 9px 22px; background: var(--rose); color: #fff; font-family: var(--ff-b); font-size: 13px; font-weight: 500; letter-spacing: .05em; border-radius: 2px; transition: background .2s, transform .15s; }
.btn-nav:hover { background: var(--rose-dark); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 24px; padding: 4px 0; }
.nav-toggle span { display: block; height: 1px; background: var(--mid); }

.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 15px 36px; background: var(--rose); color: #fff; font-family: var(--ff-b); font-size: 14px; font-weight: 500; letter-spacing: .05em; border-radius: 2px; transition: background .2s, transform .2s; }
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border: 1.5px solid var(--rose); color: var(--rose); font-family: var(--ff-b); font-size: 13px; letter-spacing: .06em; border-radius: 2px; transition: background .2s, transform .2s; }
.btn-outline:hover { background: var(--rose-light); transform: translateY(-1px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; color: var(--mid); font-size: 13px; letter-spacing: .05em; transition: color .2s; }
.btn-ghost:hover { color: var(--rose); }

.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: brightness(0.78) saturate(0.75); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(155deg, rgba(253,252,251,0.08) 0%, rgba(253,252,251,0.04) 35%, rgba(253,252,251,0.92) 100%); }
.laser-v { position: absolute; top: 0; left: -2px; width: 1.5px; height: 100%; background: linear-gradient(to bottom, transparent 0%, #D42020 50%, transparent 100%); opacity: 0; animation: lscan 3s var(--ease) 0.5s forwards; box-shadow: 0 0 8px rgba(212,32,32,0.7), 0 0 20px rgba(212,32,32,0.3); }
@keyframes lscan { 0% { left: -2px; opacity: 0; } 4% { opacity: 1; } 96% { opacity: 1; } 100% { left: 100%; opacity: 0; } }

.hero-content { position: relative; z-index: 2; padding: var(--nav-h) var(--gutter) clamp(60px,8vw,100px); max-width: var(--max); margin: 0 auto; width: 100%; }
.hero-label { font-family: var(--ff-l); font-size: 13px; letter-spacing: .25em; color: var(--rose); margin-bottom: 20px; opacity: 0; transform: translateY(20px); animation: up .8s var(--ease) 1s forwards; }
.hero-h1 { font-family: var(--ff-d); font-size: clamp(52px,7.5vw,108px); font-weight: 300; line-height: 1.0; color: var(--charcoal); max-width: 800px; opacity: 0; transform: translateY(28px); animation: up 1s var(--ease) 1.2s forwards; }
.hero-h1 em { font-style: italic; color: var(--rose); }
.hero-sub { margin-top: 28px; font-size: 16px; color: var(--mid); max-width: 400px; line-height: 1.75; opacity: 0; transform: translateY(20px); animation: up .8s var(--ease) 1.5s forwards; }
.hero-actions { margin-top: 44px; display: flex; align-items: center; gap: 20px; opacity: 0; transform: translateY(20px); animation: up .8s var(--ease) 1.7s forwards; }
.hero-scroll { position: absolute; bottom: 36px; right: var(--gutter); writing-mode: vertical-rl; font-size: 11px; letter-spacing: .15em; color: var(--muted); text-transform: uppercase; display: flex; align-items: center; gap: 10px; opacity: 0; animation: fadein .8s ease 2.5s forwards; }
.hero-scroll::before { content: ''; width: 1px; height: 44px; background: linear-gradient(to bottom, transparent, var(--muted)); }
@keyframes up { to { opacity: 1; transform: none; } }
@keyframes fadein { to { opacity: 1; } }

.trust { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px var(--gutter); }
.trust-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: clamp(20px,3vw,56px); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; }
.trust-icon { width: 15px; height: 15px; color: var(--rose); flex-shrink: 0; }
.trust-text { font-size: 11px; letter-spacing: .1em; color: var(--mid); text-transform: uppercase; }
.trust-div { width: 1px; height: 16px; background: var(--border); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.s-label { font-family: var(--ff-l); font-size: 13px; letter-spacing: .25em; color: var(--rose); margin-bottom: 16px; }
.s-heading { font-family: var(--ff-d); font-size: clamp(34px,4vw,58px); font-weight: 300; line-height: 1.1; color: var(--charcoal); }
.s-heading em { font-style: italic; color: var(--rose); }

.about { padding: var(--pad) 0; }
.about-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,6vw,96px); align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 560px; object-fit: cover; border-radius: 2px; }
.about-accent { position: absolute; top: -20px; right: -20px; width: 140px; height: 140px; border: 1px solid var(--rose-mid); border-radius: 2px; z-index: -1; }
.about-badge { position: absolute; bottom: 28px; left: -28px; background: var(--bg-card); border: 1px solid var(--rose-border); padding: 18px 22px; border-radius: 2px; box-shadow: 0 4px 24px rgba(200,128,106,0.08); }
.badge-num { font-family: var(--ff-d); font-size: 44px; font-weight: 300; color: var(--rose); line-height: 1; }
.badge-txt { font-size: 11px; color: var(--muted); letter-spacing: .05em; margin-top: 4px; }
.about-body { margin-top: 24px; font-size: 15px; color: var(--mid); line-height: 1.8; }
.pillars { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.pillar { display: flex; gap: 14px; padding: 16px 18px; border: 1px solid var(--border); border-radius: 2px; align-items: flex-start; transition: border-color .3s, background .3s; }
.pillar:hover { border-color: var(--rose-border); background: var(--rose-light); }
.pillar-icon { width: 32px; height: 32px; border: 1px solid var(--rose-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--rose); }
.pillar-title { font-size: 13px; font-weight: 500; color: var(--charcoal); margin-bottom: 3px; }
.pillar-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.about-cta { margin-top: 36px; }

.services { padding: var(--pad) 0; background: var(--bg2); }
.s-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; gap: 24px; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.svc-card { background: var(--bg2); padding: 36px; position: relative; overflow: hidden; transition: background .35s; }
.svc-card:hover { background: var(--bg-card); }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--rose-mid), var(--rose)); transform: scaleX(0); transition: transform .5s var(--ease); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-num { font-family: var(--ff-l); font-size: 12px; letter-spacing: .18em; color: var(--muted); margin-bottom: 16px; }
.svc-name { font-family: var(--ff-d); font-size: 26px; font-weight: 400; color: var(--charcoal); line-height: 1.2; margin-bottom: 12px; transition: color .3s; }
.svc-card:hover .svc-name { color: var(--rose); }
.svc-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.svc-arrow { display: flex; align-items: center; gap: 7px; font-size: 12px; letter-spacing: .07em; color: var(--muted); text-transform: uppercase; transition: color .3s, gap .3s; }
.svc-arrow svg { transition: transform .3s var(--ease); }
.svc-card:hover .svc-arrow { color: var(--rose); gap: 12px; }
.svc-card:hover .svc-arrow svg { transform: translateX(4px); }
.svc-full { grid-column: 1 / -1; }

.why { padding: var(--pad) 0; position: relative; overflow: hidden; }
.why::before { content: 'ELITE'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--ff-l); font-size: clamp(100px,18vw,240px); color: rgba(200,128,106,0.04); white-space: nowrap; pointer-events: none; user-select: none; }
.why-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.why-stmt { font-family: var(--ff-d); font-size: clamp(30px,4.5vw,64px); font-weight: 300; line-height: 1.2; color: var(--charcoal); max-width: 760px; margin: 28px auto 72px; }
.why-stmt em { font-style: italic; color: var(--rose); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); text-align: left; }
.why-pillar { padding: 44px 36px; background: var(--bg); transition: background .3s; }
.why-pillar:hover { background: var(--rose-light); }
.why-num { font-family: var(--ff-d); font-size: 56px; font-weight: 300; color: var(--rose-mid); line-height: 1; margin-bottom: 20px; }
.why-title { font-family: var(--ff-d); font-size: 22px; font-weight: 400; color: var(--charcoal); margin-bottom: 12px; }
.why-desc { font-size: 14px; color: var(--mid); line-height: 1.75; }

.process { padding: var(--pad) 0; background: var(--bg3); }
.steps { margin-top: 60px; display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(24px,4vw,56px); position: relative; }
.steps::before { content: ''; position: absolute; top: 23px; left: calc(33.33% - 16px); right: calc(33.33% - 16px); height: 1px; background: linear-gradient(to right, var(--rose-mid), transparent, var(--rose-mid)); }
.step-num { width: 46px; height: 46px; border: 1.5px solid var(--rose); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-d); font-size: 18px; font-weight: 300; color: var(--rose); margin-bottom: 28px; background: var(--bg3); position: relative; z-index: 1; }
.step-title { font-family: var(--ff-d); font-size: 22px; font-weight: 400; color: var(--charcoal); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--mid); line-height: 1.75; }

.testi { padding: var(--pad) 0; }
.testi-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card { padding: 32px; border: 1px solid var(--border); border-radius: 2px; transition: border-color .3s, background .3s; }
.testi-card:hover { border-color: var(--rose-border); background: var(--rose-light); }
.tq { font-family: var(--ff-d); font-size: 70px; line-height: .6; color: var(--rose); opacity: .2; margin-bottom: 16px; }
.ttext { font-family: var(--ff-d); font-size: 17px; font-style: italic; font-weight: 300; color: var(--charcoal); line-height: 1.6; margin-bottom: 24px; }
.stars { color: var(--rose); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.tauthor { font-size: 13px; font-weight: 500; color: var(--charcoal); }
.tloc { font-size: 12px; color: var(--muted); margin-top: 2px; }

.cta-s { padding: var(--pad) 0; background: var(--rose); position: relative; overflow: hidden; }
.cta-s::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,0.07); pointer-events: none; }
.cta-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); text-align: center; position: relative; }
.cta-label { font-family: var(--ff-l); font-size: 13px; letter-spacing: .25em; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.cta-h { font-family: var(--ff-d); font-size: clamp(40px,6vw,80px); font-weight: 300; line-height: 1.05; color: #fff; margin: 0 auto 32px; max-width: 600px; }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.72); margin-bottom: 44px; max-width: 380px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; }
.btn-white { display: inline-flex; align-items: center; gap: 10px; padding: 16px 44px; background: #fff; color: var(--rose-dark); font-family: var(--ff-b); font-size: 14px; font-weight: 500; letter-spacing: .05em; border-radius: 2px; transition: transform .2s, box-shadow .2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.btn-white-out { display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; border: 1.5px solid rgba(255,255,255,0.45); color: #fff; font-family: var(--ff-b); font-size: 13px; letter-spacing: .06em; border-radius: 2px; transition: background .2s; }
.btn-white-out:hover { background: rgba(255,255,255,0.12); }

.contact-s { padding: var(--pad) 0; }
.contact-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,6vw,100px); align-items: start; }
.hours-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 2px; padding: 28px; margin-top: 36px; }
.hr { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.hr:last-child { border-bottom: none; }
.hday { color: var(--mid); }
.htime { color: var(--rose); font-weight: 500; }
.hclosed { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.full { grid-column: 1 / -1; }
.fl { font-size: 11px; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }
.fi, .fta, .fsel { background: var(--bg2); border: 1px solid var(--border); border-radius: 2px; padding: 13px 15px; color: var(--charcoal); font-family: var(--ff-b); font-size: 14px; font-weight: 300; outline: none; transition: border-color .2s; width: 100%; }
.fi:focus, .fta:focus, .fsel:focus { border-color: var(--rose); }
.fta { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; background: var(--rose); color: #fff; font-family: var(--ff-b); font-size: 14px; font-weight: 500; letter-spacing: .05em; border-radius: 2px; border: none; cursor: none; transition: background .2s; }
.btn-submit:hover { background: var(--rose-dark); }

footer { background: var(--charcoal); padding: 72px 0 36px; }
.foot-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.foot-brand-desc { font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.7; margin-top: 14px; max-width: 260px; }
.foot-h { font-family: var(--ff-l); font-size: 12px; letter-spacing: .2em; color: rgba(255,255,255,0.28); margin-bottom: 18px; }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color .2s; }
.foot-links a:hover { color: var(--rose); }
.foot-ci { display: flex; gap: 8px; margin-bottom: 12px; align-items: flex-start; }
.foot-ci svg { color: var(--rose); flex-shrink: 0; margin-top: 2px; }
.foot-ci span, .foot-ci a { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; transition: color .2s; }
.foot-ci a:hover { color: var(--rose); }
.foot-bottom { margin-top: 36px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.foot-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.socials { display: flex; gap: 12px; }
.soc { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); transition: border-color .2s, color .2s, transform .2s; }
.soc:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }
.foot-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.foot-logo-mark { width: 32px; height: 32px; border: 1.5px solid var(--rose); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.foot-logo-text { font-family: var(--ff-l); font-size: 17px; letter-spacing: .12em; color: #fff; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .about-img { height: 400px; }
  .about-badge { left: 16px; }
  .why-grid, .testi-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .svc-grid { grid-template-columns: 1fr; }
  .s-header { flex-direction: column; align-items: flex-start; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { align-items: center; }
  .foot-top { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .full { grid-column: auto; }
}
