:root {
  --sand: #f7f1e3;
  --foam: #fffaf3;
  --sea-glass: #dff2ee;
  --lagoon: #4b8f99;
  --deep-water: #18465b;
  --coral: #dd7f68;
  --sunset: #f7b27f;
  --driftwood: #6d4e43;
  --ink: #173040;
  --shadow: 0 20px 50px rgba(23, 48, 64, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", Verdana, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(255, 220, 168, 0.75), transparent 25%),
    linear-gradient(180deg, #fff8ef 0%, #fdf3e4 20%, #eef6f4 54%, #f7efdd 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 110px 110px;
  opacity: 0.16;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 80%);
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

.sun-glow {
  position: fixed;
  top: -8rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 206, 153, 0.65), rgba(255, 206, 153, 0.08) 58%, transparent 72%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.site-header,
.section-shell,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 1rem auto 0;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(24, 70, 91, 0.08);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong,
h1,
h2,
h3 {
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.brand strong {
  font-size: 1.5rem;
  line-height: 1;
}

.brand small {
  margin-top: 0.15rem;
  color: rgba(23, 48, 64, 0.72);
  font-size: 0.88rem;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.55rem;
  color: white;
  background: linear-gradient(135deg, var(--coral), var(--lagoon));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 0.96rem;
  color: rgba(23, 48, 64, 0.88);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-button,
.button-primary {
  background: linear-gradient(135deg, var(--coral), var(--sunset));
  color: white;
  box-shadow: 0 12px 30px rgba(221, 127, 104, 0.25);
}

.button-secondary {
  color: var(--deep-water);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(24, 70, 91, 0.11);
}

.nav-button:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--deep-water);
  padding: 0.8rem 1rem;
  font: inherit;
}

.section-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.hero {
  padding: 5.5rem 0 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lagoon);
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 0.98;
}

h3 {
  margin-top: 0;
  font-size: 1.7rem;
}

.hero-text,
.services-intro p,
.about-copy p,
.service-copy p,
.rate-card p,
.testimonial-banner p,
.contact-hero p,
.request-note {
  font-size: 1.03rem;
  line-height: 1.75;
  color: rgba(23, 48, 64, 0.84);
}

.hero-actions,
.hero-highlights {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions {
  margin: 2rem 0 1.6rem;
}

.hero-highlights {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-highlights li,
.feature-list li,
.credential-panel li,
.request-list li {
  position: relative;
}

.hero-highlights li {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(24, 70, 91, 0.08);
}

.hero-art {
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 243, 0.55);
  border: 1px solid rgba(24, 70, 91, 0.08);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.section-card,
.service-panel,
.testimonial-banner,
.contact-card,
.service-link-card,
.detail-card {
  border: 1px solid rgba(24, 70, 91, 0.09);
  background: rgba(255, 250, 243, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.about-grid,
.service-panel {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr 0.85fr;
  gap: 1.5rem;
}

.credential-panel {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(223, 242, 238, 0.92), rgba(255, 248, 239, 0.82));
}

.credential-panel ul,
.feature-list,
.request-list {
  padding-left: 1.2rem;
  margin: 0;
}

.credential-panel li,
.feature-list li,
.request-list li {
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.services-intro {
  padding: 4rem 0 1rem;
  max-width: 44rem;
}

.card-grid,
.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.card-grid {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.service-link-card,
.detail-card {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
}

.page-main {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.page-hero {
  padding-top: 2rem;
  padding-bottom: 1rem;
  max-width: 54rem;
}

.page-intro {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(23, 48, 64, 0.84);
}

.detail-split {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  align-items: start;
}

.detail-card p {
  line-height: 1.75;
  color: rgba(23, 48, 64, 0.84);
}

.service-panel {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  align-items: start;
}

.service-panel.reverse {
  grid-template-columns: 320px 1fr;
}

.service-panel.reverse .service-copy {
  order: 2;
}

.service-panel.reverse .rate-card {
  order: 1;
}

.feature-list {
  margin-top: 1.4rem;
}

.rate-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(24, 70, 91, 0.95), rgba(75, 143, 153, 0.9));
  color: white;
}

.rate-card p {
  color: rgba(255, 255, 255, 0.84);
}

.rate-label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

.rate-card strong {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 2.5rem;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.testimonial-banner {
  margin-top: 2rem;
  margin-bottom: 4rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto 2rem;
  padding: 1.5rem 0 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(23, 48, 64, 0.75);
}

.contact-layout {
  padding-top: 4.5rem;
  padding-bottom: 3rem;
  display: grid;
  gap: 2rem;
}

.contact-subjects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-card,
.request-guide {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
}

.contact-card h2 {
  font-size: 2rem;
}

.request-guide {
  max-width: 52rem;
}

.request-list {
  margin-top: 1.2rem;
}

.request-note {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(24, 70, 91, 0.1);
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .service-panel,
  .service-panel.reverse,
  .testimonial-banner,
  .contact-subjects,
  .card-grid,
  .page-grid,
  .detail-split {
    grid-template-columns: 1fr;
  }

  .service-panel.reverse .service-copy,
  .service-panel.reverse .rate-card {
    order: initial;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.5rem;
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-art {
    transform: none;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
