@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --sand-0: #fdf8f1;
  --sand-1: #f5ece2;
  --sand-2: #efe2d2;
  --ocean-0: #1f4f5a;
  --ocean-1: #2f6f74;
  --ocean-2: #4b8f8a;
  --coral: #e07962;
  --sun: #f1c56c;
  --sage: #8bb4a5;
  --navy: #1a2630;
  --ink: #1b2024;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(24, 37, 43, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 15%, rgba(224, 121, 98, 0.18), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(79, 143, 138, 0.22), transparent 40%),
    linear-gradient(140deg, var(--sand-0), var(--sand-1));
  min-height: 100vh;
  line-height: 1.6;
}

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

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

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ocean-1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 248, 241, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 38, 48, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1.5rem;
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a.is-active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: var(--coral);
  border-radius: 999px;
}

.nav-links a.nav-cta {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--navy);
  color: var(--white);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.hero {
  padding: 4.2rem 0 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.8rem;
  align-items: center;
}

.hero h1,
.section-title,
.page-hero h1 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 1.1;
}

.hero h1 {
  font-size: clamp(2.5rem, 3vw + 1rem, 3.5rem);
  margin: 0.6rem 0 1rem;
  color: var(--navy);
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn.ghost {
  border-color: rgba(26, 38, 48, 0.2);
  background: var(--white);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 38, 48, 0.1);
}

.hero-visual {
  position: relative;
  background: linear-gradient(145deg, rgba(47, 111, 116, 0.18), rgba(241, 197, 108, 0.2));
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  min-height: 360px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.45;
}

.hero-visual::before {
  width: 220px;
  height: 220px;
  background: var(--coral);
  top: -60px;
  right: -40px;
}

.hero-visual::after {
  width: 180px;
  height: 180px;
  background: var(--ocean-2);
  bottom: -70px;
  left: -20px;
}

.hero-intro {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow);
  z-index: 2;
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.3rem;
}

.hero-intro-title {
  margin: 0;
  color: var(--navy);
  font-family: "Fraunces", serif;
  font-weight: 700;
  display: grid;
  gap: 0.15rem;
}

.hero-intro-line {
  display: block;
  font-size: 1rem;
}

.hero-intro-line:first-child {
  font-size: 1.3rem;
}

.hero-intro-line:nth-child(2) {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--ocean-1);
}

.hero-intro-line:nth-child(3) {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.hero-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-intro-phone {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(47, 111, 116, 0.12);
  color: var(--ocean-1);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: 0 20px 40px rgba(26, 38, 48, 0.18);
  z-index: 2;
  animation: floatIn 0.9s ease both;
}

.hero-card h3 {
  margin-top: 0;
  font-family: "Fraunces", serif;
  color: var(--navy);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(47, 111, 116, 0.12);
  color: var(--ocean-1);
  font-size: 0.85rem;
  font-weight: 600;
}

.jump-links {
  padding-top: 0;
}

.jump-links .tag-row a.tag {
  text-decoration: none;
}

section {
  padding: 3.5rem 0;
}

.section-title {
  font-size: clamp(2rem, 2vw + 1rem, 2.6rem);
  margin: 0.2rem 0 0.8rem;
  color: var(--navy);
}

.section-subtitle {
  max-width: 680px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--white);
  padding: 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 38, 48, 0.06);
}

.card h3 {
  margin-top: 0;
  font-family: "Fraunces", serif;
}

.card p {
  margin-bottom: 1rem;
}

.stars {
  color: var(--sun);
  letter-spacing: 0.1rem;
  font-size: 1rem;
}

.link-arrow {
  font-weight: 600;
  color: var(--ocean-1);
}

.split {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.split.stacked {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 38, 48, 0.08);
}

.steps {
  display: grid;
  gap: 1.4rem;
}

.step {
  display: grid;
  gap: 0.4rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border-left: 4px solid var(--ocean-1);
}

.cta {
  background: linear-gradient(120deg, rgba(47, 111, 116, 0.2), rgba(224, 121, 98, 0.2));
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 3.5rem 0 1.5rem;
  position: relative;
}

.page-hero::after {
  content: "";
  display: block;
  clear: both;
}

.page-hero .hero-intro {
  float: right;
  max-width: 320px;
  margin: 0 0 1.5rem 2rem;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 2.5vw + 1rem, 3.2rem);
  margin-top: 0.8rem;
}

.list {
  display: grid;
  gap: 0.8rem;
  padding-left: 1rem;
}

.list li {
  margin-left: 0.6rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(241, 197, 108, 0.25);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-card {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.biz-card {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: block;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(26, 38, 48, 0.2);
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.status-card {
  margin-bottom: 1rem;
  border-left: 4px solid var(--coral);
  background: rgba(255, 255, 255, 0.9);
}

.map-card {
  background: var(--white);
  padding: 0.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 38, 48, 0.08);
  margin-bottom: 0.9rem;
}

.map-embed {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: var(--radius-sm);
}

.map-note {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: rgba(26, 38, 48, 0.7);
}

.footer {
  padding: 2.5rem 0 3rem;
  background: rgba(26, 38, 48, 0.95);
  color: var(--white);
  margin-top: 3rem;
}

.footer a {
  color: var(--white);
  text-decoration: underline;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-brand {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.footer small {
  opacity: 0.7;
}

.reveal {
  animation: rise 0.8s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .nav-links {
    position: absolute;
    right: 4%;
    top: 70px;
    flex-direction: column;
    background: var(--white);
    padding: 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  body.nav-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .page-hero .hero-intro {
    float: none;
    max-width: 100%;
    margin: 1.5rem 0 0;
  }
}

@media (max-width: 720px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 280px;
  }

  .map-embed {
    min-height: 260px;
  }

  .footer-top {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-card {
    animation: none;
  }
}
