:root {
  --bg: #f6f3ee;
  --bg-deep: #ebe4da;
  --surface: #fffaf4;
  --surface-strong: #fffdfa;
  --surface-dark: #193634;
  --line: rgba(25, 54, 52, 0.12);
  --text: #17292a;
  --muted: #607070;
  --accent: #1f6e68;
  --accent-2: #d5b086;
  --accent-3: #89b9b1;
  --white: #ffffff;
  --shadow-soft: 0 10px 24px rgba(28, 40, 38, 0.08);
  --shadow-lift: 0 14px 34px rgba(24, 36, 33, 0.1);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(213, 176, 134, 0.22), transparent 24%),
    radial-gradient(circle at 90% 14%, rgba(31, 110, 104, 0.12), transparent 20%),
    linear-gradient(180deg, #fbf8f4 0%, #f1ece6 100%);
  overflow-x: hidden;
}

.ambient {
  display: none;
}

.ambient-one {
  width: 360px;
  height: 360px;
  right: -80px;
  top: 120px;
  background: radial-gradient(circle, rgba(137, 185, 177, 0.34), transparent 68%);
}

.ambient-two {
  width: 420px;
  height: 420px;
  left: -120px;
  bottom: 120px;
  background: radial-gradient(circle, rgba(213, 176, 134, 0.28), transparent 68%);
}

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

p,
li {
  line-height: 1.72;
}

.site-frame {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 20px auto 36px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #78ada6);
  color: var(--white);
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  font-weight: 600;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 18px 32px rgba(31, 110, 104, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(31, 110, 104, 0.24);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent);
  box-shadow: none;
  border: 1px solid rgba(31, 110, 104, 0.12);
}

.button-soft {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  margin-top: 26px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.services-section,
.standards-section,
.experience-panel,
.reviews-section,
.faq-section,
.contact-section,
.site-footer,
.story-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  position: relative;
  padding: 58px 56px 48px;
  border-radius: var(--radius-xl);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 800;
}

.hero h1,
.section-intro h2,
.story-card-large h2,
.standards-copy h2,
.experience-panel h2,
.contact-copy h2,
.faq-section h2 {
  margin: 14px 0 18px;
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.6rem, 7vw, 6.2rem);
}

.hero-intro {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 32px;
}

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

.proof-chip {
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.proof-chip strong,
.contact-item a,
.service-body h3,
.metric-card strong,
.featured-review .review-author strong {
  display: block;
}

.proof-chip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.94), rgba(247, 241, 233, 0.96)),
    var(--surface);
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.panel-label,
.panel-status {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.panel-label {
  background: rgba(31, 110, 104, 0.1);
  color: var(--accent);
}

.panel-status {
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

.quote-card {
  position: relative;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(27, 57, 55, 0.98), rgba(23, 45, 43, 0.98));
  color: var(--white);
  box-shadow: var(--shadow-lift);
}

.quote-head p,
.schedule-head p,
.visual-card p,
.contact-item span,
.metric-kicker {
  margin: 0;
}

.quote-head strong {
  display: block;
  margin-top: 8px;
  font-size: 1.6rem;
  line-height: 1.22;
}

.quote-grid {
  display: grid;
  gap: 14px;
  margin: 24px 0 28px;
}

.quote-grid article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-grid span,
.schedule-step span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.quote-grid strong,
.schedule-step p {
  margin: 0;
}

.mini-schedule {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.schedule-head span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.schedule-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
}

.schedule-step + .schedule-step {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule-step strong {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  flex: 0 0 auto;
}

.floating-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(250px, calc(100% - 36px));
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 32px rgba(19, 34, 32, 0.12);
}

.floating-note span {
  display: block;
  color: var(--accent);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.floating-note strong {
  display: block;
  margin-top: 8px;
  line-height: 1.45;
}

.brand-ribbon {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.brand-ribbon p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.75);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr 0.55fr;
  gap: 18px;
  margin-top: 26px;
}

.story-card {
  border-radius: var(--radius-xl);
  padding: 30px;
}

.story-card-large h2,
.section-intro h2,
.standards-copy h2,
.experience-panel h2,
.contact-copy h2,
.faq-section h2 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.story-card-large p:not(.eyebrow),
.section-intro p:last-child,
.standards-copy > p:not(.eyebrow),
.experience-panel-light p,
.contact-copy p:last-child,
.faq-grid p,
.review-card p,
.featured-review p {
  color: var(--muted);
}

.metric-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(31, 110, 104, 0.92), rgba(22, 69, 65, 0.98)),
    var(--accent);
  color: var(--white);
}

.metric-kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.86;
}

.metric-card strong {
  margin: 14px 0 8px;
  font-size: clamp(3.6rem, 6vw, 5.2rem);
  line-height: 0.9;
}

.metric-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.note-card {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.95), rgba(248, 241, 233, 0.95)),
    var(--surface);
}

.room-badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31, 110, 104, 0.09);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.note-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.services-section,
.reviews-section,
.faq-section,
.contact-section {
  margin-top: 26px;
  padding: 38px;
  border-radius: var(--radius-xl);
}

.section-intro {
  max-width: 780px;
  margin-bottom: 28px;
}

.services-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.service-feature {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  min-height: 100%;
}

.service-feature-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: flex-start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(252, 247, 241, 0.82)),
    rgba(255, 255, 255, 0.7);
}

.service-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(31, 110, 104, 0.1);
  color: var(--accent);
  font-weight: 800;
}

.service-body h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.service-body p {
  margin: 0;
  color: var(--muted);
}

.service-body ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.standards-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 20px;
  margin-top: 26px;
  padding: 38px;
  border-radius: var(--radius-xl);
}

.standards-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.standards-list article {
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.standards-list strong {
  display: block;
  margin-bottom: 6px;
}

.standards-list span {
  color: var(--muted);
}

.standards-visual {
  display: grid;
  gap: 18px;
}

.visual-card {
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.visual-primary {
  background: linear-gradient(180deg, rgba(28, 61, 58, 0.98), rgba(20, 43, 41, 0.98));
  color: var(--white);
}

.visual-primary h3 {
  margin: 10px 0 18px;
  font-size: 1.7rem;
}

.visual-primary ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.visual-secondary {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill-row span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31, 110, 104, 0.08);
  color: var(--accent);
  font-weight: 700;
}

.experience-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 26px;
}

.experience-panel {
  border-radius: var(--radius-xl);
  padding: 34px;
}

.experience-panel-dark {
  background:
    linear-gradient(180deg, rgba(24, 55, 53, 0.98), rgba(18, 40, 39, 0.98)),
    var(--surface-dark);
  color: var(--white);
}

.experience-panel-dark .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.experience-panel-dark h2 {
  max-width: 12ch;
}

.experience-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.experience-flow div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.experience-flow span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.experience-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.experience-panel-light h3 {
  margin: 14px 0 14px;
  font-family: "Fraunces", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 800;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.featured-review {
  position: relative;
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(250, 244, 237, 0.92)),
    rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.quote-mark {
  font-family: "Fraunces", serif;
  font-size: 6rem;
  line-height: 0.8;
  color: rgba(31, 110, 104, 0.18);
}

.featured-review p {
  margin: 6px 0 24px;
  font-size: 1.08rem;
  max-width: 48ch;
}

.review-author span,
.review-card span {
  color: var(--muted);
}

.review-stack {
  display: grid;
  gap: 18px;
}

.review-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.review-card strong {
  display: block;
  margin-top: 14px;
}

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

.faq-grid article {
  padding: 22px 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.faq-grid h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 251, 246, 0.88), rgba(247, 240, 231, 0.92)),
    var(--surface);
}

.contact-card {
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(27, 57, 55, 0.98), rgba(22, 45, 43, 0.98));
  color: var(--white);
  box-shadow: var(--shadow-lift);
}

.contact-item + .contact-item {
  margin-top: 18px;
}

.contact-item span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.contact-item p,
.contact-item a {
  margin: 0;
  font-size: 1.02rem;
}

.contact-button {
  width: 100%;
  margin-top: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 22px 28px;
  border-radius: 24px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .hero,
  .story-grid,
  .services-layout,
  .standards-section,
  .experience-section,
  .reviews-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .experience-panel-dark h2 {
    max-width: none;
  }

  .brand-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 30px;
  }

  .experience-flow {
    grid-template-columns: 1fr;
  }

  .floating-note {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}

@media (max-width: 800px) {
  .site-frame {
    width: min(calc(100% - 18px), var(--max-width));
  }

  .site-header {
    border-radius: 28px;
  }

  .site-nav {
    display: none;
  }

  .site-header,
  .hero-actions,
  .hero-proof,
  .brand-ribbon,
  .site-footer {
    flex-direction: column;
  }

  .hero-copy,
  .hero-panel,
  .services-section,
  .standards-section,
  .experience-panel,
  .reviews-section,
  .faq-section,
  .contact-section {
    padding: 26px;
  }

  .hero-proof,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-feature-main {
    grid-template-columns: 1fr;
  }

  .brand-ribbon {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 4.4rem);
  }

  .site-footer {
    align-items: flex-start;
  }
}
