:root {
  --bg: #ffffff;
  --text: #141414;
  --muted: #5e5e5e;
  --gold: #b8892f;
  --gold-soft: #ead6a8;
  --gold-deep: #8c6722;
  --black: #0d0d0d;
  --white: #ffffff;
  --line: #ece8df;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.09);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 999;
  background: #fff;
  border: 2px solid var(--gold);
  padding: 10px 14px;
  border-radius: 10px;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 137, 47, 0.12);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(184, 137, 47, 0.25);
  box-shadow: var(--shadow);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--black);
}
.brand-tag {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--black);
  font-weight: 600;
  transition: 0.25s ease;
}
.nav a:hover {
  background: #111;
  color: #fff;
}

.hero {
  position: relative;
  padding: 72px 0 44px;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(184,137,47,0.16), transparent 68%);
  top: -60px;
  left: -80px;
}
.hero::after {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0,0,0,0.08), transparent 65%);
  right: -80px;
  bottom: -120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(184,137,47,0.12), rgba(184,137,47,0.04));
  border: 1px solid rgba(184,137,47,0.2);
  border-radius: 999px;
  color: var(--gold-deep);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.section-kicker-light {
  color: #f5d48c;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.hero h1,
.section-heading h2,
.statement-card h2,
.contact-copy h2,
.footer h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.96;
  max-width: 10ch;
}

.hero-text,
.section-heading p,
.statement-card p,
.contact-copy p,
.footer p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.hero-text {
  max-width: 60ch;
  margin: 22px 0 26px;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  background: linear-gradient(180deg, #fff, #fcfaf6);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow);
}

.info-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.info-card a,
.info-card p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  word-break: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--black), #202020);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0,0,0,0.16);
}
.btn-secondary {
  border: 1px solid rgba(184,137,47,0.35);
  color: var(--black);
  background: #fff;
}

.hero-visual { position: relative; }
.logo-frame {
  position: relative;
  background: linear-gradient(145deg, #0d0d0d, #171717);
  border-radius: 36px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  overflow: hidden;
}
.logo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(184,137,47,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,137,47,0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.logo-frame img {
  position: relative;
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(234,214,168,0.18);
}

.section {
  padding: 42px 0 80px;
}
.section-light { padding-top: 0; }
.statement-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #111, #1d1d1d);
  color: #fff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.statement-card p { color: rgba(255,255,255,0.82); margin: 0; }
.statement-card h2 { font-size: clamp(2rem, 4vw, 3.4rem); }

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-heading h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  margin-bottom: 10px;
}

.areas-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.areas-image-card,
.contact-item {
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 140px;
  background:
    linear-gradient(145deg, rgba(184,137,47,0.08), rgba(255,255,255,0.95)),
    #fff;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "§";
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 3rem;
  line-height: 1;
  color: rgba(184,137,47,0.18);
  font-family: 'Cormorant Garamond', serif;
}
.service-card span {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  font-weight: 800;
}

.areas-image-card {
  padding: 16px;
  background: #fff;
}
.areas-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.section-dark-accent {
  background: linear-gradient(160deg, #111111, #1b1b1b 60%, #0f0f0f);
}
.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}
.contact-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 12px;
}
.contact-copy p { color: rgba(255,255,255,0.74); }

.contact-list {
  display: grid;
  gap: 16px;
}
.contact-item {
  background: linear-gradient(145deg, rgba(255,255,255,0.98), #fdf9f1);
  padding: 22px 24px;
  transition: transform 0.2s ease;
}
.contact-item:hover { transform: translateY(-3px); }
.contact-label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gold-deep);
  font-weight: 800;
  margin-bottom: 8px;
}
.contact-item strong {
  display: block;
  font-size: 1.22rem;
  color: var(--black);
  word-break: break-word;
}
.static-item { pointer-events: none; }

.footer {
  background: #fff;
  border-top: 1px solid rgba(184,137,47,0.14);
  padding: 26px 0 100px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.footer p { margin: 6px 0; }
.footer-logo img {
  width: 128px;
  border-radius: 20px;
  border: 1px solid rgba(184,137,47,0.2);
  box-shadow: var(--shadow);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-width: 142px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #d7b367);
  color: #111;
  box-shadow: 0 20px 44px rgba(184, 137, 47, 0.34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .areas-layout,
  .statement-card,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .hero-cards { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav { width: 100%; }
  .nav a {
    flex: 1 1 auto;
    text-align: center;
    border: 1px solid rgba(184,137,47,0.14);
  }
  .hero { padding-top: 42px; }
  .hero h1 { max-width: none; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-logo img { width: 96px; }
}
