@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-400.ttf") format("truetype");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-500.ttf") format("truetype");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-600.ttf") format("truetype");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-700.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/playfair-display-700.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/playfair-display-700-italic.ttf") format("truetype");
}

:root {
  --navy: #071f35;
  --navy-2: #0d2b47;
  --cream: #f7efe3;
  --paper: #fffaf2;
  --gold: #c68a2c;
  --gold-light: #e4bd78;
  --ink: #13283b;
  --muted: #66717a;
  --line: #ddcfbd;
  --white: #fff;
  --shadow: 0 22px 60px rgba(7, 31, 53, 0.15);
  --sans: "DM Sans", sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button,
input,
textarea {
  font: inherit;
}
.shell {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  padding: 10px;
  z-index: 100;
}
.skip-link:focus {
  left: 8px;
}
.site-header {
  height: 82px;
  background: rgba(255, 250, 242, 0.95);
  border-bottom: 1px solid rgba(7, 31, 53, 0.1);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.05;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.brand small {
  display: block;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  margin-top: 5px;
}
.nav-wrap nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-wrap nav > a:not(.button) {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.nav-wrap nav > a:not(.button):hover {
  color: var(--gold);
}
.menu-button,
.mobile-nav {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 3px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 24px;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.button-small {
  padding: 10px 18px;
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 82px 0 72px;
}
.hero:before {
  content: "";
  position: absolute;
  right: -8%;
  top: -45%;
  width: 50%;
  height: 190%;
  background: var(--navy);
  transform: rotate(10deg);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  align-items: center;
  gap: 90px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero h1,
.section h2 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.01;
  letter-spacing: -0.035em;
  margin: 0;
}
.hero h1 em {
  color: var(--gold);
  font-weight: 700;
}
.hero-lede {
  max-width: 620px;
  font-size: 18px;
  color: #40515f;
  margin: 28px 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.text-link {
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 5px;
}
.trust-list {
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  color: #51606c;
  font-size: 13px;
}
.trust-list li:before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  margin-right: 8px;
}
.hero-card {
  position: relative;
  background: #fff;
  border: 8px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}
.hero-logo-wrap {
  aspect-ratio: 1;
  overflow: hidden;
}
.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.price-panel {
  background: var(--gold);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 13px;
  padding: 17px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  font-weight: 700;
}
.price-panel strong {
  font-size: 31px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.promise-strip {
  background: var(--navy);
  color: #fff;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.promise-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.promise-grid > div:last-child {
  border: 0;
}
.promise-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}
.promise-grid p {
  margin: 0;
  line-height: 1.25;
}
.promise-grid strong,
.promise-grid small {
  display: block;
}
.promise-grid strong {
  font-size: 14px;
}
.promise-grid small {
  color: #aab8c3;
  font-size: 11px;
  margin-top: 4px;
}
.section {
  padding: 105px 0;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 52px;
}
.section h2 {
  font-size: clamp(40px, 5vw, 62px);
}
.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
}
.rental-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rental-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: 34px 30px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.rental-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.rental-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: #dbe3e9;
}
.popular {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 12px;
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card-number {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.rental-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--navy);
  margin: 12px 0 8px;
}
.rental-card.featured h3 {
  color: #fff;
}
.rental-card > p:not(.card-number, .popular) {
  font-size: 14px;
  color: var(--muted);
}
.rental-card.featured > p:not(.card-number, .popular) {
  color: #b8c4cd;
}
.rental-card a {
  margin-top: auto;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 5px;
}
.rental-card a span {
  float: right;
}
.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin: 25px 0 0;
}
.process {
  background: var(--navy);
  color: #d1dbe3;
}
.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}
.light {
  color: var(--gold-light);
}
.process h2,
.reserve h2 {
  color: #fff;
}
.process-intro > p:last-child {
  max-width: 450px;
  color: #aebbc5;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.steps li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.steps > li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
}
.steps h3 {
  margin: 0 0 3px;
  color: #fff;
  font-size: 17px;
}
.steps p {
  margin: 0;
  color: #9dabb6;
  font-size: 14px;
}
.service-area {
  background: var(--cream);
}
.area-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.area-mark {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy);
  color: #fff;
  outline: 1px solid var(--gold);
  outline-offset: -16px;
  transform: rotate(-2deg);
  box-shadow: var(--shadow);
}
.area-mark span {
  font-size: 11px;
  letter-spacing: 0.38em;
  color: var(--gold);
}
.area-mark strong {
  font-family: var(--serif);
  font-size: clamp(37px, 5vw, 62px);
  line-height: 1.05;
  margin-top: 15px;
}
.area-grid > div:last-child > p {
  color: var(--muted);
  max-width: 550px;
}
.text-link.dark {
  color: var(--navy);
  display: inline-block;
  margin-top: 8px;
}
.reserve {
  background: linear-gradient(125deg, var(--navy), var(--navy-2));
  color: #d2dce4;
}
.reserve-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
  align-items: start;
}
.reserve-copy > p {
  color: #aab8c3;
}
.contact-card {
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  margin-top: 36px;
}
.contact-card span,
.contact-card small,
.contact-card a {
  display: block;
}
.contact-card span,
.contact-card small {
  font-size: 11px;
  color: #9cabb6;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.contact-card a {
  font-family: var(--serif);
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  margin: 3px 0;
}
.inquiry-form {
  background: var(--paper);
  color: var(--ink);
  padding: 36px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.inquiry-form label,
.inquiry-form legend {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.inquiry-form input:not([type="radio"], [type="checkbox"]),
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  padding: 12px;
  margin: 7px 0 18px;
  color: var(--ink);
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.inquiry-form fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 20px;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.choice-grid label {
  position: relative;
}
.choice-grid input {
  position: absolute;
  opacity: 0;
}
.choice-grid span {
  display: block;
  border: 1px solid var(--line);
  padding: 12px;
  text-align: center;
  cursor: pointer;
}
.choice-grid input:checked + span {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.choice-grid input:focus + span {
  outline: 2px solid var(--gold);
}
.contact-notice {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.contact-notice a {
  color: var(--navy);
  font-weight: 700;
}
.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.legal-page {
  min-height: 70vh;
  padding: 90px 0;
  background: var(--cream);
}
.legal-content {
  max-width: 780px;
}
.legal-content h1 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1.05;
}
.legal-content h2 {
  margin: 38px 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
}
.legal-content p {
  color: #4b5b68;
}
.legal-content .legal-updated {
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 13px;
}
.legal-content .button {
  margin-top: 28px;
}
.submit-button {
  width: 100%;
}
.submit-button:disabled {
  opacity: 0.65;
  cursor: wait;
}
.form-note,
.form-status {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin: 12px 0 0;
}
.form-status {
  font-weight: 700;
}
.form-status.is-success {
  color: #23734b;
}
.form-status.is-error {
  color: #a53a30;
}
footer {
  background: #041727;
  color: #9eacb6;
  padding: 60px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 50px;
}
.footer-brand {
  display: flex;
  gap: 18px;
  align-items: center;
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
}
.footer-brand img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
footer h2 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 13px;
}
footer a,
footer span {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 5px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom span {
  display: inline;
  color: var(--gold);
}
@media (max-width: 850px) {
  .nav-wrap nav {
    display: none;
  }
  .menu-button {
    display: block;
    border: 1px solid var(--navy);
    background: transparent;
    border-radius: 2px;
    padding: 8px 12px;
    color: var(--navy);
    font-weight: 700;
  }
  .mobile-nav:not([hidden]) {
    display: grid;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 20px;
  }
  .mobile-nav a {
    padding: 10px;
    text-decoration: none;
    font-weight: 600;
  }
  .hero {
    padding: 55px 0;
  }
  .hero:before {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-card {
    width: min(480px, 90%);
    margin: auto;
  }
  .section-heading,
  .process-grid,
  .area-grid,
  .reserve-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .rental-grid {
    grid-template-columns: 1fr;
  }
  .rental-card {
    min-height: 250px;
  }
  .area-mark {
    width: min(400px, 90%);
    margin: auto;
  }
  .promise-grid > div {
    padding: 20px 10px;
    gap: 9px;
  }
  .promise-icon {
    width: 32px;
    height: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 1140px);
  }
  .site-header {
    height: 70px;
  }
  .brand img {
    width: 46px;
    height: 46px;
  }
  .brand {
    font-size: 14px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }
  .text-link {
    text-align: center;
  }
  .trust-list {
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .promise-grid {
    grid-template-columns: 1fr;
  }
  .promise-grid > div {
    justify-content: flex-start;
    padding: 16px 25px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .section {
    padding: 75px 0;
  }
  .section h2 {
    font-size: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .inquiry-form {
    padding: 24px 18px;
  }
  .choice-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .price-panel {
    gap: 7px;
    padding: 13px 8px;
    white-space: nowrap;
  }
  .price-panel span {
    flex: none;
    font-size: 8px;
    letter-spacing: 0.08em;
  }
  .price-panel strong {
    flex: none;
    font-size: 20px;
  }
}
.optional {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-left: 4px;
}
.social-links {
  display: grid;
  gap: 12px;
}
.social-links > a {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  width: max-content;
}
.social-links > a:hover strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.social-links a > span:last-child {
  margin: 0;
  color: #9eacb6;
  font-size: 11px;
  line-height: 1.35;
}
.social-links strong {
  display: block;
  color: #fff;
  font-size: 13px;
}
.social-icon {
  display: block;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  margin: 0 !important;
  background: var(--gold);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
.facebook-icon {
  mask-image: url("/assets/icons/facebook.svg");
  -webkit-mask-image: url("/assets/icons/facebook.svg");
}
.instagram-icon {
  mask-image: url("/assets/icons/instagram.svg");
  -webkit-mask-image: url("/assets/icons/instagram.svg");
}
.footer-bottom > p:first-child {
  max-width: 760px;
  padding: 8px 0 8px 20px;
  border-left: 3px solid var(--gold);
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
}
.footer-bottom > p:first-child span {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.footer-bottom > p:last-child {
  align-self: flex-end;
  white-space: nowrap;
  color: #81919d;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}
