@font-face {
  font-family: "Soligant";
  src: url("../fonts/Soligant.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #f7f5f0;
  --cream: #fffaf2;
  --dark: #242322;
  --charcoal: #353331;
  --soft-charcoal: #4b4742;
  --gray: #8b8780;
  --line: rgba(36, 35, 34, 0.13);
  --light-line: rgba(255, 250, 242, 0.22);

  --display: "Soligant", "Cormorant Garamond", Georgia, serif;
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Avenir Next", "Avenir", "Helvetica Neue", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--dark);
  font-weight: 300;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 92px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(247, 245, 240, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(36, 35, 34, 0.08);
}

.brand {
  font-family: var(--display);
  font-size: 38px;
  letter-spacing: 0.03em;
  font-weight: 400;
  line-height: 1;
}

.main-nav {
  display: flex;
  gap: 42px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(36, 35, 34, 0.72);
}

.header-cta {
  justify-self: end;
  padding: 13px 24px;
  border: 1px solid rgba(36, 35, 34, 0.45);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(36, 35, 34, 0.84);
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-video { display: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(247, 245, 240, 0.91) 0%,
    rgba(247, 245, 240, 0.75) 42%,
    rgba(247, 245, 240, 0.34) 68%,
    rgba(247, 245, 240, 0.12) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  padding: 150px 5vw 70px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}

.eyebrow,
.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gray);
  }

.hero-copy h1 {
  margin-top: 32px;
  font-family: var(--display);
  font-size: clamp(66px, 9vw, 138px);
  line-height: 0.82;
  letter-spacing: 0.005em;
  font-weight: 400;
}

.hero-description {
  max-width: 520px;
  margin-top: 34px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(36, 35, 34, 0.66);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 27px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  }

.btn-dark {
  background: var(--dark);
  color: var(--cream);
  border: 1px solid var(--dark);
}

.btn-light {
  border: 1px solid rgba(36, 35, 34, 0.42);
  color: rgba(36, 35, 34, 0.82);
}

/* BOOKING */

.booking-card {
  background: rgba(36, 35, 34, 0.955);
  color: var(--cream);
  padding: 38px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.2);
}

.booking-card h2 {
  font-family: var(--display);
  font-size: 46px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 12px;
}

.booking-card p {
  color: rgba(255, 250, 242, 0.62);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 30px;
}

.field { margin-bottom: 18px; }

.field label {
  display: block;
  margin-bottom: 9px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 250, 242, 0.48);
  }

.field input,
.field select,
.field textarea {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  background: rgba(255, 250, 242, 0.045);
  border: 1px solid rgba(255, 250, 242, 0.14);
  color: var(--cream);
  outline: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 250, 242, 0.34);
}

.package-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.package input { display: none; }

.package span {
  display: block;
  padding: 15px 0;
  text-align: center;
  background: rgba(255, 250, 242, 0.045);
  border: 1px solid rgba(255, 250, 242, 0.14);
  color: rgba(255, 250, 242, 0.64);
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.07em;
}

.package input:checked + span {
  background: var(--cream);
  color: var(--dark);
}

.booking-card button,
.contact-form button {
  width: 100%;
  height: 54px;
  border: none;
  background: var(--cream);
  color: var(--dark);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
    cursor: pointer;
}

/* SECTIONS */

.about-section,
.services-section,
.contact-section {
  padding: 120px 5vw;
}

.about-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.about-grid h2,
.contact-section h2 {
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 112px);
  line-height: 0.86;
  letter-spacing: 0.005em;
  font-weight: 400;
}

.about-grid p {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(36, 35, 34, 0.67);
}

.services-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.services-grid article {
  min-height: 330px;
  padding: 46px 36px;
  border-right: 1px solid var(--line);
}

.services-grid article:last-child {
  border-right: none;
}

.services-grid span {
  display: block;
  margin-bottom: 62px;
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.services-grid h3 {
  font-family: var(--display);
  font-size: 54px;
  line-height: 0.95;
  font-weight: 400;
  margin-bottom: 20px;
}

.services-grid p {
  color: rgba(36, 35, 34, 0.66);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.75;
}

.statement-section {
  padding: 145px 5vw;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
}

.statement-section h2 {
  max-width: 1060px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 118px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  font-weight: 400;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  background: var(--white);
}

.contact-section p {
  margin-top: 26px;
  max-width: 560px;
  color: rgba(36, 35, 34, 0.67);
  font-weight: 300;
  line-height: 1.85;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  outline: none;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form button {
  margin-top: 18px;
  background: var(--dark);
  color: var(--cream);
}

.site-footer {
  padding: 38px 5vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--gray);
  }

/* RESPONSIVE */

@media (max-width: 1024px) {
  .main-nav { display: none; }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .booking-card {
    max-width: 560px;
  }

  .about-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid article {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .services-grid article:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .desktop-video { display: none; }
  .mobile-video { display: block; }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(247, 245, 240, 0.88) 0%,
      rgba(247, 245, 240, 0.72) 45%,
      rgba(247, 245, 240, 0.96) 100%
    );
  }

  .hero-inner {
    padding: 130px 6vw 65px;
  }

  .hero-copy h1 {
    font-size: clamp(62px, 17vw, 92px);
    line-height: 0.84;
  }

  .statement-section h2,
  .about-grid h2,
  .contact-section h2 {
    line-height: 0.9;
  }

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

@media (max-width: 560px) {
  .site-header {
    height: 78px;
    padding: 0 6vw;
  }

  .brand { font-size: 28px; }
  .header-cta { display: none; }

  .hero-inner {
    padding-top: 112px;
  }

  .booking-card {
    padding: 28px;
  }

  .booking-card h2 {
    font-size: 40px;
  }

  .package-options {
    grid-template-columns: 1fr;
  }

  .about-section,
  .services-section,
  .contact-section {
    padding: 86px 6vw;
  }

  .services-grid h3 {
    font-size: 48px;
  }
}


/* Refine Logo */

.brand{
    display:flex;
    align-items:center;
}

.brand img{
    height:52px;
    width:auto;
    display:block;
}

/* Optional watermark icon */

.statement-section{
    position:relative;
    overflow:hidden;
}

.statement-section::after{
    content:"";
    position:absolute;
    right:-80px;
    bottom:-80px;
    width:260px;
    height:260px;
    background:url('../images/logo_ico.png') center/contain no-repeat;
    opacity:.05;
}


/* =========================
   Header PNG Logo Fix
========================= */

.brand{
  display:flex !important;
  align-items:center;
  line-height:1;
}

.brand img{
  height:58px;
  width:auto;
  display:block;
}

/* =========================
   Mobile Menu Fix
========================= */

@media (max-width:1024px){

  .site-header{
    height:auto;
    padding:22px 6vw;
    grid-template-columns:1fr;
    gap:18px;
    text-align:center;
  }

  .brand{
    justify-content:center;
  }

  .brand img{
    height:62px;
    width:auto;
    margin:0 auto;
  }

  .main-nav{
    display:flex !important;
    justify-content:center;
    gap:22px;
    font-size:12px;
    letter-spacing:.04em;
  }

  .header-cta{
    display:none;
  }
}

@media (max-width:560px){

  .main-nav{
    gap:18px;
    font-size:12px;
    flex-wrap:wrap;
  }

  .hero-inner{
    padding-top:180px;
  }

  .brand img{
    height:58px;
  }
}

/* =========================
   Select Dropdown Fix
========================= */

.field select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background-color:rgba(255,250,242,.06);
  color:#fffaf2;
  background-image:
    linear-gradient(45deg, transparent 50%, #fffaf2 50%),
    linear-gradient(135deg, #fffaf2 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
}

.field select:focus{
  background-color:#2b2a28;
  color:#fffaf2;
}

.field select option{
  background-color:#2b2a28;
  color:#fffaf2;
}


/* =========================
   Mobile Menu Legibility Update
========================= */

.main-nav a{
  opacity:.88;
  transition:.3s ease;
}

.main-nav a:hover{
  opacity:1;
}

@media (max-width:560px){

  .site-header{
    background:rgba(247,245,240,.97);
    backdrop-filter:blur(22px);
    border-bottom:1px solid rgba(36,35,34,.10);
  }

  .brand img{
    height:60px;
    margin-bottom:8px;
  }

  .main-nav{
    display:flex !important;
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;

    font-size:14px;
    font-weight:500;

    letter-spacing:.18em;
    text-transform:uppercase;

    color:#242322;

    margin-top:4px;
  }

  .hero-inner{
    padding-top:190px;
  }
}


/* =========================
   Mobile Body Text Legibility Fix
========================= */

@media (max-width:768px){

  .about-grid p,
  .hero-description,
  .services-grid p,
  .contact-section p{
    color:rgba(36,35,34,.82) !important;
    font-weight:400;
    line-height:1.75;
  }

  .about-grid p{
    font-size:18px;
    max-width:100%;
  }

  .section-label,
  .eyebrow{
    color:rgba(36,35,34,.62) !important;
    font-weight:400;
  }

  .about-section,
  .services-section,
  .contact-section{
    background:#f7f5f0;
  }
}

@media (max-width:560px){

  .about-grid p,
  .hero-description,
  .services-grid p,
  .contact-section p{
    color:rgba(36,35,34,.86) !important;
    font-size:17px;
    line-height:1.85;
    font-weight:400;
  }

  .about-grid{
    gap:38px;
  }
}


/* =========================
   Book + Contact Form Legibility Fix
========================= */

/* Book card on dark background */
.booking-card p{
  color:rgba(255,250,242,.82) !important;
  font-weight:400;
}

.booking-card .field label{
  color:rgba(255,250,242,.82) !important;
  font-weight:400;
}

.booking-card .field input,
.booking-card .field select,
.booking-card .field textarea{
  color:#fffaf2 !important;
  background:rgba(255,250,242,.08) !important;
  border-color:rgba(255,250,242,.28) !important;
  font-weight:400;
}

.booking-card .field input::placeholder,
.booking-card .field textarea::placeholder{
  color:rgba(255,250,242,.68) !important;
}

/* Contact form on light background */
.contact-form input,
.contact-form textarea{
  color:#242322 !important;
  border-bottom-color:rgba(36,35,34,.28) !important;
  font-weight:400;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:rgba(36,35,34,.62) !important;
  opacity:1;
}

/* Extra mobile contrast */
@media (max-width:768px){

  .booking-card{
    background:rgba(36,35,34,.97) !important;
  }

  .booking-card h2{
    color:#fffaf2 !important;
  }

  .booking-card p,
  .booking-card .field label{
    color:rgba(255,250,242,.84) !important;
  }

  .booking-card .field input,
  .booking-card .field select,
  .booking-card .field textarea{
    color:#fffaf2 !important;
    background:rgba(255,250,242,.10) !important;
    border-color:rgba(255,250,242,.34) !important;
  }

  .booking-card .field input::placeholder,
  .booking-card .field textarea::placeholder{
    color:rgba(255,250,242,.72) !important;
  }

  .contact-form input,
  .contact-form textarea{
    color:#242322 !important;
    border-bottom:1px solid rgba(36,35,34,.34) !important;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder{
    color:rgba(36,35,34,.72) !important;
  }
}

@media (max-width:560px){

  .booking-card .field label,
  .contact-form input,
  .contact-form textarea{
    font-size:16px;
  }

  .booking-card .field input,
  .booking-card .field select{
    height:58px;
    font-size:16px;
  }

  .booking-card p{
    font-size:17px;
    line-height:1.65;
  }
}
