@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --paper: #fbfbfb;
  --paper-warm: #f5f3ed;
  --ink: #1b1c1e;
  --navy: #153447;
  --navy-deep: #0d2635;
  --seafoam: #6cbfb3;
  --aqua: #dcefed;
  --gold: #e5b938;
  --muted: #62676a;
  --line: rgba(27, 28, 30, 0.16);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(21, 52, 71, 0.16);
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --shell: min(100% - 2rem, 90rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-200%);
  border-radius: 0.25rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(rgba(21, 52, 71, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 52, 71, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 4rem 4rem;
}

.ambient {
  position: absolute;
  z-index: 0;
  width: 34rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(4rem);
  opacity: 0.42;
  pointer-events: none;
}

.ambient--one {
  top: -22rem;
  right: -12rem;
  background: var(--aqua);
  animation: ambient-drift 12s ease-in-out infinite alternate;
}

.ambient--two {
  top: 42rem;
  left: -25rem;
  background: rgba(229, 185, 56, 0.16);
  animation: ambient-drift 15s ease-in-out 1.5s infinite alternate-reverse;
}

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

.site-header {
  display: flex;
  min-height: 7.75rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-top: 0.65rem;
}

.brand {
  width: clamp(10rem, 14vw, 13rem);
}

.brand img {
  width: 100%;
  height: auto;
}

.header-contact {
  display: grid;
  justify-items: end;
  line-height: 1.2;
}

.header-contact span {
  margin-bottom: 0.38rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-contact a {
  position: relative;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.header-contact a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0.35);
  transform-origin: right;
  transition: transform 180ms ease;
}

.header-contact a:hover::after,
.header-contact a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  min-height: min(48rem, calc(100svh - 7.75rem));
  grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.92fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: center;
  padding-block: clamp(1.75rem, 2vw, 2.5rem) clamp(4rem, 8vw, 7.5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 47rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.65rem;
  border: 1px solid rgba(21, 52, 71, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 30px rgba(21, 52, 71, 0.06);
  padding: 0.62rem 0.9rem;
  color: var(--navy);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.status-pill span {
  width: 0.52rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--seafoam);
  box-shadow: 0 0 0 0 rgba(108, 191, 179, 0.5);
  animation: signal 2.5s ease-out infinite;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.8rem;
  color: var(--navy-deep);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

h1 span {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(3.25rem, 6.7vw, 7.25rem);
  font-weight: 500;
  letter-spacing: -0.075em;
}

h1 em {
  display: block;
  margin-top: 0.2em;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 8vw, 8.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 41rem;
  margin-bottom: 2rem;
  color: #42484b;
  font-size: clamp(1.05rem, 1.45vw, 1.23rem);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--navy);
  padding: 0.9rem 1.2rem;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.button--primary {
  min-width: 12.2rem;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 35px rgba(21, 52, 71, 0.18);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--navy-deep);
  box-shadow: 0 18px 40px rgba(21, 52, 71, 0.25);
}

.button--secondary {
  min-width: 11.2rem;
  background: rgba(251, 251, 251, 0.7);
  color: var(--navy);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: var(--aqua);
}

.owner-note {
  display: flex;
  max-width: 39rem;
  align-items: center;
  gap: 1.35rem;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.owner-note img {
  width: clamp(6.75rem, 8vw, 8.25rem);
  height: auto;
  aspect-ratio: 4 / 5;
  flex: 0 0 auto;
  border: 4px solid var(--white);
  border-radius: 1.35rem 1.35rem 0.3rem 1.35rem;
  box-shadow: 0 14px 36px rgba(21, 52, 71, 0.17);
  object-fit: cover;
}

.owner-note p {
  display: grid;
  gap: 0.18rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.owner-note strong {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 38rem;
  justify-self: end;
}

.frame-line {
  position: absolute;
  z-index: -1;
  top: -1.15rem;
  right: -1.15rem;
  bottom: 1.15rem;
  left: 1.15rem;
  border: 1px solid rgba(21, 52, 71, 0.25);
}

.scene {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.86;
  background: var(--paper-warm);
  box-shadow: var(--shadow);
}

.scene::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.46);
  content: "";
  pointer-events: none;
}

.scene-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform: scale(1.06);
  animation: scene-breathe 15s ease-in-out infinite alternate;
}

.scene-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 38, 53, 0.02) 42%, rgba(13, 38, 53, 0.62) 100%),
    linear-gradient(90deg, rgba(251, 251, 251, 0.34), transparent 45%);
}

.scene-caption {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: grid;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.scene-caption span {
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.glint {
  position: absolute;
  width: 0.48rem;
  aspect-ratio: 1;
  background: var(--white);
  box-shadow:
    0 0 0.9rem rgba(255, 255, 255, 0.95),
    0 0 2rem rgba(229, 185, 56, 0.65);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  animation: twinkle 3.4s ease-in-out infinite;
}

.glint--one {
  top: 12%;
  right: 15%;
}

.glint--two {
  top: 28%;
  left: 23%;
  width: 0.32rem;
  animation-delay: 1.4s;
}

.crest {
  position: absolute;
  top: 2.2rem;
  left: -2.65rem;
  display: grid;
  width: 6.2rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(21, 52, 71, 0.16);
}

.crest img {
  width: 4.1rem;
  height: auto;
  aspect-ratio: 298 / 208;
  object-fit: contain;
}

.crest-ring {
  position: absolute;
  inset: 0.42rem;
  border: 1px dashed rgba(21, 52, 71, 0.38);
  border-radius: 50%;
  animation: orbit 20s linear infinite;
}

.service-card {
  position: relative;
  display: flex;
  width: min(100%, 25rem);
  align-items: center;
  gap: 1.35rem;
  margin: 1rem 0 0 auto;
  background: var(--navy);
  box-shadow: 0 20px 50px rgba(13, 38, 53, 0.25);
  padding: 1.1rem 1.4rem;
  color: var(--white);
}

.service-card p {
  flex: 0 0 auto;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-card ul {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.7rem;
  margin: 0;
  padding: 0;
  text-align: center;
  list-style: none;
}

.service-card li {
  font-family: var(--font-display);
  font-size: 1.03rem;
}

.service-card li:not(:last-child)::after {
  margin-left: 0.7rem;
  color: var(--gold);
  content: "·";
}

.contact-band {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.contact-band::before {
  position: absolute;
  top: -15rem;
  right: -6rem;
  width: 30rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(255, 255, 255, 0.025),
    0 0 0 10rem rgba(255, 255, 255, 0.018);
  content: "";
}

.contact-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(34rem, 1.2fr);
  gap: 4rem;
  align-items: center;
  padding-block: clamp(3.5rem, 6vw, 5rem);
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-band .eyebrow {
  color: var(--gold);
}

.contact-band h2,
.service-area h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-links a {
  display: grid;
  gap: 0.4rem;
  padding: 1.35rem 1.5rem;
  text-decoration: none;
  transition: background 180ms ease;
}

.contact-links a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-links a:hover,
.contact-links a:focus-visible {
  background: rgba(255, 255, 255, 0.09);
}

.contact-links span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.service-area {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  padding-block: clamp(4.5rem, 8vw, 7rem);
  border-bottom: 1px solid var(--line);
}

.service-area__heading {
  position: sticky;
  top: 2rem;
}

.service-area h2 {
  color: var(--navy);
}

.city-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.city-list li {
  display: grid;
  min-height: 4.25rem;
  grid-template-columns: 2.5rem 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1rem 0.75rem 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.city-list li:nth-child(even) {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.city-list span {
  color: #60777c;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.site-footer {
  display: flex;
  min-height: 6.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.site-footer p {
  margin-bottom: 0;
}

.mobile-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(1.3rem);
  animation: reveal-up 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal--one {
  animation-delay: 80ms;
}

.reveal--two {
  animation-delay: 160ms;
}

.reveal--three {
  animation-delay: 260ms;
}

.reveal--four {
  animation-delay: 360ms;
}

.reveal--five {
  animation-delay: 460ms;
}

.reveal--visual {
  transform: translateX(1.8rem);
  animation-delay: 240ms;
}

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes signal {
  70% {
    box-shadow: 0 0 0 0.55rem rgba(108, 191, 179, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(108, 191, 179, 0);
  }
}

@keyframes scene-breathe {
  to {
    transform: scale(1.12) translateX(-1.2%);
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.65) rotate(0);
  }

  45% {
    opacity: 1;
    transform: scale(1.25) rotate(90deg);
  }
}

@keyframes ambient-drift {
  to {
    transform: translate3d(2.5rem, 2rem, 0) scale(1.08);
  }
}

@media (max-width: 72rem) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.8fr);
    gap: 4rem;
  }

  h1 span {
    font-size: clamp(3.2rem, 6vw, 5.5rem);
  }

  h1 em {
    font-size: clamp(4rem, 7vw, 6.6rem);
  }

  .crest {
    left: -1.5rem;
  }

  .service-card {
    right: auto;
  }

  .contact-band__inner {
    grid-template-columns: minmax(0, 0.75fr) minmax(30rem, 1.25fr);
    gap: 2.5rem;
  }
}

@media (max-width: 56rem) {
  :root {
    --shell: min(100% - 2rem, 44rem);
  }

  .site-header {
    min-height: 6.5rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 4.5rem;
    padding-block: 4rem 6rem;
  }

  .hero-copy {
    max-width: none;
  }

  h1 span {
    font-size: clamp(3.35rem, 12vw, 6rem);
  }

  h1 em {
    font-size: clamp(4.15rem, 14.5vw, 7.25rem);
  }

  .hero-visual {
    width: calc(100% - 1.5rem);
    max-width: 36rem;
    justify-self: center;
  }

  .scene {
    aspect-ratio: 1.08;
  }

  .crest {
    left: -1.25rem;
  }

  .contact-band__inner,
  .service-area {
    grid-template-columns: 1fr;
  }

  .contact-band__inner {
    gap: 2.25rem;
  }

  .service-area {
    gap: 2.75rem;
  }

  .service-area__heading {
    position: static;
  }
}

@media (max-width: 38rem) {
  :root {
    --shell: min(100% - 1.4rem, 34rem);
  }

  body {
    padding-bottom: 4.25rem;
  }

  .page {
    overflow: clip;
    background-size: 3rem 3rem;
  }

  .site-header {
    min-height: 5.65rem;
  }

  .brand {
    width: 9.2rem;
  }

  .header-contact {
    display: none;
  }

  .hero {
    gap: 3.5rem;
    padding-block: 3rem 5.25rem;
  }

  .status-pill {
    margin-bottom: 1.35rem;
    padding: 0.52rem 0.72rem;
    font-size: 0.59rem;
    letter-spacing: 0.13em;
  }

  h1 {
    margin-bottom: 1.4rem;
  }

  h1 span {
    font-size: clamp(2.85rem, 14.7vw, 4.5rem);
  }

  h1 em {
    margin-top: 0.22em;
    font-size: clamp(3.65rem, 17.5vw, 5.5rem);
  }

  .hero-lede {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    min-width: 0;
    min-height: 3.35rem;
    gap: 0.5rem;
    padding-inline: 0.9rem;
    font-size: 0.67rem;
  }

  .owner-note {
    align-items: center;
    margin-top: 1.65rem;
  }

  .owner-note img {
    width: 5.85rem;
    height: auto;
  }

  .owner-note p {
    font-size: 0.78rem;
  }

  .owner-note strong {
    font-size: 0.8rem;
  }

  .hero-visual {
    width: calc(100% - 0.75rem);
    margin-left: 0.75rem;
  }

  .frame-line {
    top: -0.7rem;
    right: -0.7rem;
    bottom: 0.7rem;
    left: 0.7rem;
  }

  .scene {
    aspect-ratio: 0.9;
  }

  .scene-caption {
    right: 1.2rem;
    bottom: 1.25rem;
    left: 1.2rem;
    font-size: 1.85rem;
  }

  .crest {
    top: 1rem;
    left: -0.9rem;
    width: 4.7rem;
  }

  .crest img {
    width: 3.15rem;
    height: auto;
  }

  .service-card {
    right: auto;
    bottom: auto;
    width: 100%;
    gap: 0.9rem;
    margin-top: 0.7rem;
    padding: 1rem 1.1rem;
  }

  .service-card li {
    font-size: 0.91rem;
  }

  .contact-band__inner {
    padding-block: 3.25rem;
  }

  .contact-band h2,
  .service-area h2 {
    font-size: 2.5rem;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .contact-links a + a {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .service-area {
    padding-block: 4rem;
  }

  .city-list {
    grid-template-columns: 1fr;
  }

  .city-list li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .site-footer {
    min-height: 7.5rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .mobile-actions {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(13, 38, 53, 0.96);
    box-shadow: 0 -10px 35px rgba(13, 38, 53, 0.24);
    color: var(--white);
    backdrop-filter: blur(16px);
  }

  .mobile-actions a {
    display: grid;
    min-height: 4.25rem;
    place-items: center;
    align-content: center;
    gap: 0.05rem;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-actions a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .mobile-actions span {
    color: var(--gold);
    font-size: 0.83rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
