:root {
  --navy: #0B1C2C;
  --navy-deep: #061321;
  --gold: #CFAF6E;
  --gold-light: #F1D998;
  --white: #FFFFFF;
  --light: #F6F6F6;
  --text: #172333;
  --muted: #5E6876;
  --shadow: 0 18px 45px rgba(6, 19, 33, 0.18);
  --header-height: 88px;
  --container: 1260px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-padding {
  padding: 92px 0;
}

.section-padding-sm {
  padding: 72px 0 78px;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy);
}

p {
  font-size: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 30px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: transform 250ms ease, background 250ms ease, color 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(6, 19, 33, 0.22);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #081827;
  border-color: var(--gold);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--white);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--navy);
}

.btn-navy:hover,
.btn-navy:focus-visible {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(11, 28, 44, 0.98);
  border-bottom: 1px solid rgba(207, 175, 110, 0.12);
  transition: height 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.site-header.scrolled {
  height: 74px;
  background: rgba(6, 19, 33, 0.98);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.header-inner {
  width: min(calc(100% - 40px), 1320px);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}
/*
.brand {
  display: inline-grid;
  line-height: 1;
  color: var(--gold);
  min-width: 205px;
}

.header-inner{
  max-width:1280px;width:100%;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
}*/
.brand{
  display:flex;flex-direction:column;line-height:1;
}

/*.brand-script {
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
  letter-spacing: -0.06em;
  color: var(--gold-light);
}

.brand-sub {
  margin-top: -11px;
  margin-left: 58px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
}
*/
.brand-script {
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:22px;
  color:var(--gold);
  letter-spacing:0.5px;
}
.brand-sub{
  font-size:9px;
  letter-spacing:4px;
  color:var(--gold);
  text-transform:uppercase;
  margin-top:2px;
}

.brand-tagline {
  display: none;
  margin-top: 6px;
  margin-left: 47px;
  font-family: var(--serif);
  font-size: 10px;
  font-style: italic;
  color: var(--white);
  opacity: 0.92;
}

.site-header.scrolled .brand-script {
  font-size: 22px;
}

.site-header.scrolled .brand-sub {
  font-size: 9px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
}

.main-nav a {
  position: relative;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0.95;
  transition: color 200ms ease, opacity 200ms ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 0;
  height: 3px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 220ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 34px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 240ms ease, color 240ms ease, transform 240ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(207, 175, 110, 0.45);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold-light);
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  margin-top: var(--header-height);
  color: var(--white);
  overflow: hidden;
}

.hero-bg,
.hero-overlay,
.final-cta-bg,
.final-cta-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 19, 33, 0.98) 0%, rgba(11, 28, 44, 0.93) 31%, rgba(11, 28, 44, 0.53) 52%, rgba(11, 28, 44, 0.12) 100%),
    linear-gradient(0deg, rgba(6, 19, 33, 0.15), rgba(6, 19, 33, 0.15));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 585px;
  margin-left: max(40px, calc((100vw - var(--container)) / 2));
  margin-right: auto;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(54px, 6vw, 82px);
  letter-spacing: -0.035em;
}

.hero-subtitle {
  margin-top: 10px;
  font-family: var(--serif);
  color: var(--gold-light);
  font-size: clamp(24px, 3vw, 34px);
  font-style: italic;
  line-height: 1.2;
}

.gold-rule {
  width: 255px;
  height: 28px;
  position: relative;
  margin: 22px 0 20px;
}

.gold-rule::before,
.gold-rule::after,
.section-rule::before,
.section-rule::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  background: var(--gold);
}

.gold-rule::before {
  left: 0;
  width: 100px;
}

.gold-rule::after {
  right: 0;
  width: 100px;
}

.gold-rule span,
.section-rule span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero-copy {
  max-width: 470px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--serif);
  font-size: clamp(20px, 2.3vw, 29px);
  line-height: 1.42;
}

.micro-copy {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.micro-copy a {
  color: var(--gold-light);
  font-weight: 700;
}

/* SECTION HEADINGS */
.section-heading {
  text-align: center;
  margin-bottom: 44px;
}

.section-heading h2,
.intro-copy h2,
.about-copy h2,
.final-cta h2 {
  font-size: clamp(34px, 4vw, 44px);
  letter-spacing: -0.02em;
}

.section-rule {
  position: relative;
  width: 108px;
  height: 22px;
  margin: 16px auto 0;
}

.section-rule::before {
  left: 0;
  width: 44px;
}

.section-rule::after {
  right: 0;
  width: 44px;
}

.gold-on-navy::before,
.gold-on-navy::after,
.gold-on-navy span {
  background: var(--gold);
}

/* INTRO */
.intro {
  background: var(--white);
}

.intro-grid {
  min-height: 300px;
  grid-template-columns: 1.05fr 0.95fr;
}

.intro-copy {
  max-width: 610px;
  text-align: center;
  justify-self: center;
}

.intro-copy p,
.about-copy p {
  color: #293546;
  font-size: 15px;
  line-height: 1.9;
}

.intro-image {
  position: relative;
  height: 330px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.intro-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(207, 175, 110, 0.18));
  z-index: 1;
}

.monogram {
  position: absolute;
  right: 28px;
  bottom: 20px;
  z-index: 2;
  font-family: var(--serif);
  color: rgba(11, 28, 44, 0.64);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* SERVICES */
.services {
  position: relative;
  background: var(--light);
}

.anchor-offset {
  position: absolute;
  top: -88px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  position: relative;
  text-align: center;
  padding-bottom: 6px;
}

.service-img {
  height: 260px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(6, 19, 33, 0.14);
}

.service-img img {
  transition: transform 700ms ease, filter 700ms ease;
}

.service-card:hover .service-img img {
  transform: scale(1.065);
  filter: saturate(1.05) contrast(1.03);
}

.icon-circle {
  width: 76px;
  height: 76px;
  margin: -38px auto 22px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  border: 4px solid var(--light);
  box-shadow: 0 10px 24px rgba(6, 19, 33, 0.20);
}

.icon-circle svg,
.why-item svg,
.socials svg {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-circle svg {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  font-size: 23px;
  margin-bottom: 13px;
}

.service-card h3 span {
  display: block;
  margin-top: 5px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.service-card p {
  width: min(100%, 260px);
  margin-inline: auto;
  color: #4c5665;
  font-size: 13px;
  line-height: 1.75;
}

/* WHY BOOK */
.why-book {
  background:
    radial-gradient(circle at 22% 0%, rgba(207, 175, 110, 0.13), transparent 29%),
    var(--navy);
  color: var(--white);
}

.why-book h2,
.why-book h3 {
  color: var(--white);
}

.why-book .section-heading h2 {
  color: var(--gold-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.why-item {
  position: relative;
  text-align: center;
  padding: 0 42px;
}

.why-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 0;
  width: 1px;
  height: calc(100% - 20px);
  background: rgba(207, 175, 110, 0.75);
}

.why-item svg {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.why-item h3 {
  margin-bottom: 11px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.why-item p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.75;
}

/* ABOUT */
.about {
  background: var(--white);
}

.about-grid {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 76px;
}

.about-image {
  position: relative;
  min-height: 260px;
  max-height: 380px;
  max-width: 320px;
  justify-self: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  min-width: 100px;
  padding: 12px 12px 10px;
  border: 1px solid var(--gold);
  background: rgba(11, 28, 44, 0.86);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 0.98;
  text-align: center;
}

.image-badge span {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-copy {
  max-width: 720px;
  text-align: center;
  justify-self: center;
}

.about-copy p {
  margin-top: 22px;
}

.about-copy .btn {
  margin-top: 28px;
}

/* FINAL CTA */
.final-cta {
  position: relative;
  min-height: 235px;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
}

.final-cta-bg {
  background-image: url('images/contactphoto.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.final-cta-overlay {
  background: linear-gradient(90deg, rgba(6, 19, 33, 0.92), rgba(11, 28, 44, 0.72), rgba(6, 19, 33, 0.9));
}

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 38px 0;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 45px);
}

.cta-subtitle {
  margin-top: 6px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.2;
}

.final-cta p:not(.cta-subtitle) {
  margin: 7px 0 18px;
  color: rgba(255, 255, 255, 0.88);
}

/* FOOTER */
.footer {
  background: var(--navy);
  color: var(--white);
  border-top: 2px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 0.85fr;
  gap: 42px;
  padding: 46px 0 38px;
  text-align: center;
}

.footer-grid > div:not(:last-child) {
  border-right: 1px solid rgba(207, 175, 110, 0.55);
}

.footer h3 {
  margin-bottom: 15px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-footer {
  min-width: auto;
  justify-items: center;
  margin: 0 auto;
}

.brand-footer .brand-tagline {
  display: block;
  margin-left: 0;
}

.brand-footer .brand-script {
  font-size: 48px;
}

.brand-footer .brand-sub {
  margin-left: 0;
  font-size: 12px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 19px;
}

.socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transition: background 220ms ease, transform 220ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  background: rgba(207, 175, 110, 0.18);
  transform: translateY(-2px);
}

.socials svg {
  width: 16px;
  height: 16px;
}

.footer-contact,
.footer-hours,
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-phone {
  margin-bottom: 11px;
  color: var(--gold-light);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-email,
.footer-hours p,
.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.65;
}

.footer-email:hover,
.footer-links a:hover {
  color: var(--gold-light);
}

.nationwide {
  margin-top: 10px;
  color: var(--gold-light) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(207, 175, 110, 0.18);
  padding: 18px 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.footer-legal {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.38) !important;
  font-size: 11px;
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.6;
}

/* REVEAL EFFECTS */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }

/* RESPONSIVE */
@media (max-width: 1120px) {
  .header-inner {
    gap: 22px;
  }

  .main-nav {
    gap: 22px;
  }

  .header-cta {
    padding: 0 20px;
  }

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

  .why-grid {
    gap: 34px 0;
  }

  .why-item:nth-child(2)::after {
    display: none;
  }

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

  .footer-grid > div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .site-header,
  .site-header.scrolled {
    height: var(--header-height);
  }

  .header-inner {
    grid-template-columns: auto auto;
  }

  .brand-script,
  .site-header.scrolled .brand-script {
    font-size: 22px;
  }

  .brand-sub,
  .site-header.scrolled .brand-sub {
    margin-top: 2px;
    margin-left: 0;
    font-size: 9px;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    background: rgba(6, 19, 33, 0.98);
    border-top: 1px solid rgba(207, 175, 110, 0.18);
    border-bottom: 1px solid rgba(207, 175, 110, 0.18);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 250ms ease, opacity 250ms ease;
  }

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

  .main-nav a {
    padding: 15px 0;
    text-align: center;
  }

  .main-nav a::after {
    bottom: 6px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero-bg {
    background-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 19, 33, 0.85), rgba(11, 28, 44, 0.78)),
      linear-gradient(90deg, rgba(6, 19, 33, 0.9), rgba(6, 19, 33, 0.38));
  }

  .hero-content {
    width: min(calc(100% - 40px), 560px);
    margin-inline: auto;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 60px);
  }

  .gold-rule {
    margin-inline: auto;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .split-grid,
  .intro-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .intro-image,
  .about-image {
    min-height: auto;
    height: 340px;
  }

  .about-image {
    order: 1;
  }

  .about-copy {
    order: 2;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section-padding {
    padding: 70px 0;
  }

  .section-padding-sm {
    padding: 62px 0;
  }

  .btn {
    width: 100%;
    max-width: 340px;
  }

  .brand {
    min-width: 170px;
  }

  .hero {
    min-height: 640px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .hero-subtitle {
    font-size: 23px;
  }

  .hero-copy {
    font-size: 22px;
  }

  .service-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-img {
    height: 255px;
  }

  .why-grid {
    gap: 34px;
  }

  .why-item {
    padding: 0 18px 34px;
  }

  .why-item:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 82px;
    height: 1px;
    transform: translateX(-50%);
  }

  .footer-grid {
    gap: 28px;
    padding: 42px 0 32px;
  }

  .footer-grid > div:not(:last-child),
  .footer-grid > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(207, 175, 110, 0.36);
    padding-bottom: 28px;
  }

  .footer-phone {
    font-size: 26px;
  }

  .footer-contact .footer-phone,
  .footer-contact .footer-email {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

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