/* Vestry — Luxury Palm Beach Concierge Theme */
:root {
  --navy: #0D1B2A;
  --gold: #C9A84C;
  --cream: #F8F4EE;
  --cream-dark: #EDE7D9;
  --warm-gray: #6B6260;
  --light-gray: #A8A09A;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* — Navigation — */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background: linear-gradient(to bottom, rgba(13,27,42,0.8) 0%, transparent 100%);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid rgba(201,168,76,0.4);
  transition: background 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

/* — Hero — */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,27,42,0.95) 0%,
    rgba(13,27,42,0.5) 40%,
    rgba(13,27,42,0.15) 100%
  );
}

.hero-content {
  position: relative;
  max-width: 680px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 540px;
}

/* — Section Shared — */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* — Services — */
.services {
  padding: 100px 48px;
  background: var(--cream);
}

.services-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.services-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.service-item {
  padding: 32px;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  transition: border-color 0.2s;
}

.service-item:hover {
  border-color: var(--gold);
}

.service-item--ask {
  background: var(--navy);
  border-color: var(--navy);
}

.service-item--ask h3,
.service-item--ask p {
  color: var(--white);
}

.service-item--ask .service-icon {
  color: var(--gold);
}

.service-icon {
  color: var(--navy);
  margin-bottom: 20px;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.service-item p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* — How It Works — */
.how-it-works {
  padding: 100px 48px;
  background: var(--navy);
}

.hiw-inner {
  max-width: 900px;
}

.hiw-header {
  margin-bottom: 64px;
}

.hiw-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.hiw-step {
  padding: 0 40px 0 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.hiw-step:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 40px;
}

.hiw-step:nth-child(2) {
  padding-left: 40px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.step-body p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* — Pricing — */
.pricing {
  padding: 100px 48px;
  background: var(--cream);
}

.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pricing-card {
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--cream-dark);
}

.pricing-tier {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.price {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.per {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--light-gray);
}

.pricing-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-gray);
  margin-bottom: 32px;
}

.pricing-divider {
  height: 1px;
  background: var(--cream-dark);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
}

.check {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.pricing-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.pricing-note {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

.pricing-note:last-child {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--warm-gray);
}

/* — Closing — */
.closing {
  padding: 120px 48px;
  background: var(--cream-dark);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 16px;
}

.closing-text--accent {
  color: var(--gold);
}

/* — Footer — */
.footer {
  padding: 40px 48px;
  background: var(--navy);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

/* — Responsive — */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-cta { display: none; }
  
  .hero { padding: 0 24px 60px; }
  
  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .service-item { padding: 24px; }
  
  .how-it-works { padding: 80px 24px; }
  .hiw-steps { grid-template-columns: 1fr; gap: 48px; }
  .hiw-step { border-right: none; padding: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 48px; }
  .hiw-step:last-child { border-bottom: none; padding-bottom: 0; }
  .hiw-step:nth-child(2) { padding-left: 0; }
  
  .pricing { padding: 80px 24px; }
  .pricing-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-card { padding: 32px; }
  .price { font-size: 48px; }
  
  .closing { padding: 80px 24px; }
  
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-meta { text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}