@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0b1728;
  --navy-2: #12233a;
  --navy-3: #1a3150;
  --cream: #f7f1e8;
  --sand: #efe2cf;
  --white: #ffffff;
  --ink: #172033;
  --muted: #667085;
  --line: rgba(23, 32, 51, 0.12);
  --line-dark: rgba(255,255,255,0.14);
  --gold: #b88a43;
  --gold-light: #d8b36d;
  --forest: #30493f;
  --shadow: 0 24px 80px rgba(11, 23, 40, 0.14);
  --shadow-soft: 0 16px 40px rgba(11, 23, 40, 0.10);
  --serif: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --content: 1180px;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(100% - 2rem, var(--content)); margin-inline: auto; }

h1, h2, h3, .brand-name { font-family: var(--serif); font-weight: 300; line-height: 1.08; letter-spacing: 0; text-transform: uppercase; }
h1 { font-size: 4.8rem; }
h2 { font-size: 3.25rem; }
h3 { font-size: 1.55rem; }
p { color: var(--muted); }
strong { color: var(--ink); }

.skip-link { position: absolute; left: -999px; top: 1rem; z-index: 999; background: var(--navy); color: #fff; padding: .75rem 1rem; border-radius: 999px; }
.skip-link:focus { left: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(23,32,51,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand { display: inline-flex; align-items: center; gap: .85rem; min-width: max-content; }
.brand-logo { display: block; width: 118px; max-width: 18vw; max-height: 52px; height: auto; object-fit: contain; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(184,138,67,.55);
  background: #fff;
  color: var(--gold);
  box-shadow: 0 10px 25px rgba(184,138,67,.12);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-name { font-size: 1.45rem; color: var(--navy); }
.brand-tag { display: block; color: var(--muted); font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; line-height: 1.1; }
.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; }
.nav-links a { display: inline-flex; align-items: center; min-height: 42px; padding: 0 .85rem; border-radius: 999px; color: #3f4859; font-weight: 600; font-size: .9rem; transition: .22s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--navy); background: rgba(184,138,67,.12); }
.nav-actions { display: flex; align-items: center; gap: .65rem; }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 1.05rem; border-radius: 999px; background: var(--navy); color: #fff; font-weight: 700; font-size: .9rem; box-shadow: 0 12px 30px rgba(11,23,40,.18); transition: transform .22s ease, background .22s ease; }
.nav-cta:hover { transform: translateY(-2px); background: var(--forest); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 999px; color: var(--navy); cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: currentColor; margin: 4px auto; border-radius: 999px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 52px; padding: 0 1.25rem; border-radius: 999px; font-weight: 800; transition: .22s ease; border: 1px solid transparent; cursor: pointer; }
.btn-primary { color: #fff; background: var(--navy); box-shadow: 0 18px 45px rgba(11,23,40,.18); }
.btn-primary:hover { transform: translateY(-2px); background: var(--forest); }
.btn-gold { color: var(--navy); background: var(--gold-light); box-shadow: 0 18px 45px rgba(184,138,67,.2); }
.btn-gold:hover { transform: translateY(-2px); background: #e5c179; }
.btn-outline { color: var(--navy); border-color: rgba(11,23,40,.18); background: rgba(255,255,255,.65); }
.btn-outline:hover { transform: translateY(-2px); border-color: var(--gold); background: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); background: var(--cream); }

/* Layout */
.section { padding: clamp(4.2rem, 8vw, 7.5rem) 0; }
.section-sm { padding: clamp(3.2rem, 6vw, 5.2rem) 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.section-dark p, .section-dark .section-lead { color: rgba(255,255,255,.72); }
.section-dark strong, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark::before { content: ""; position: absolute; inset: -20% auto auto -10%; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(216,179,109,.22), transparent 65%); pointer-events: none; }
.section-head { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, .82fr); gap: clamp(1.5rem, 5vw, 4rem); align-items: end; margin-bottom: clamp(2rem, 5vw, 4.2rem); }
.section-head.center { max-width: 820px; text-align: center; margin-inline: auto; display: block; }
.eyebrow { color: var(--gold); font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 800; margin-bottom: .8rem; }
.section-title { color: var(--navy); }
.section-lead { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--muted); }
.section-dark .section-title { color: #fff; }

/* Hero */
.hero { background: var(--cream); padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(4rem, 7vw, 6rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-copy { padding: clamp(1rem, 4vw, 2rem) 0; }
.hero-copy h1 { color: var(--navy); margin-bottom: 1.2rem; }
.hero-copy h1 em { color: var(--gold); font-style: italic; }
.hero-sub { font-size: clamp(1.05rem, 1.45vw, 1.22rem); max-width: 680px; margin-bottom: 1.7rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2rem; }
.hero-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.hero-kpi { padding: 1rem; background: rgba(255,255,255,.72); border: 1px solid rgba(184,138,67,.18); border-radius: 18px; box-shadow: 0 12px 35px rgba(11,23,40,.07); }
.hero-kpi strong { display: block; color: var(--navy); font-size: 1.35rem; font-weight: 800; line-height: 1; }
.hero-kpi span { display: block; margin-top: .35rem; color: var(--muted); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.hero-visual { position: relative; min-height: 660px; }
.hero-photo-main { position: absolute; inset: 0 0 7rem 2.5rem; border-radius: 36px; overflow: hidden; box-shadow: var(--shadow); }
.hero-photo-main img, .hero-photo-small img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-small { position: absolute; left: 0; bottom: 0; width: min(58%, 360px); height: 260px; border-radius: 28px; overflow: hidden; border: 10px solid var(--cream); box-shadow: var(--shadow); }
.hero-badge { position: absolute; right: 1.2rem; bottom: 3.2rem; width: min(46%, 300px); padding: 1.2rem; border-radius: 24px; background: rgba(11,23,40,.92); color: #fff; box-shadow: var(--shadow); }
.hero-badge span { display: block; color: var(--gold-light); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800; margin-bottom: .35rem; }
.hero-badge p { color: rgba(255,255,255,.82); font-size: .92rem; line-height: 1.55; }

/* Page hero */
.page-hero { position: relative; min-height: 460px; display: grid; align-items: end; overflow: hidden; background: var(--navy); color: #fff; }
.page-hero::after { content: none; display: none; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero .container { position: relative; z-index: 2; padding: 7rem 0 4rem; }
.page-hero h1 { max-width: 900px; margin-bottom: 1rem; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.78); font-size: 1.12rem; }
.breadcrumb { color: var(--gold-light); font-weight: 800; text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; margin-bottom: .9rem; }

/* Cards */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.25rem, 2vw, 1.7rem); box-shadow: var(--shadow-soft); }
.feature-card.dark { background: var(--navy); color: #fff; border-color: var(--line-dark); }
.feature-card.dark p, .feature-card.dark .card-kicker { color: rgba(255,255,255,.70); }
.card-icon { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; color: var(--gold); background: rgba(184,138,67,.12); margin-bottom: 1.1rem; }
.card-icon svg { width: 24px; height: 24px; }
.card-kicker { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; margin-bottom: .45rem; }
.feature-card h3 { margin-bottom: .65rem; color: var(--navy); }
.feature-card.dark h3 { color: #fff; }

.image-text { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.image-text.reverse { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
.image-text.reverse .image-text-media { order: 2; }
.image-text-media { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); min-height: 460px; }
.image-text-media img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }
.image-text-copy p { margin-top: 1rem; }
.image-text-list { display: grid; gap: .75rem; margin-top: 1.4rem; }
.check-line { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink); font-weight: 700; }
.check-line::before { content: ""; width: 8px; height: 8px; flex: 0 0 auto; margin-top: .65rem; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(184,138,67,.14); }
.section-dark .check-line { color: #fff; }

.split-gallery { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1rem; }
.split-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.split-gallery .tall { min-height: 620px; }
.split-gallery .stack { display: grid; gap: 1rem; }
.split-gallery .stack img { min-height: 300px; }

/* Amenity listing */
.amenity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.amenity-panel { display: grid; grid-template-columns: 220px 1fr; gap: 1.2rem; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.amenity-panel img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.amenity-panel-body { padding: 1.4rem 1.4rem 1.4rem 0; }
.amenity-panel-body h3 { color: var(--navy); margin-bottom: .55rem; }

/* Gallery */
.gallery-toolbar { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; margin: -1rem auto 2.2rem; }
.gallery-chip { border: 1px solid var(--line); background: #fff; color: var(--navy); border-radius: 999px; padding: .65rem 1rem; font-weight: 800; font-size: .86rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.gallery-item { position: relative; min-height: 260px; border: 0; padding: 0; border-radius: 22px; overflow: hidden; cursor: pointer; background: #ddd; box-shadow: var(--shadow-soft); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-caption { position: absolute; inset: auto .8rem .8rem .8rem; background: rgba(255,255,255,.88); color: var(--navy); border-radius: 16px; padding: .75rem .9rem; font-weight: 800; backdrop-filter: blur(10px); }
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(11,23,40,.92); display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 84vh; border-radius: 22px; box-shadow: 0 30px 90px rgba(0,0,0,.4); }
.lightbox-close { position: absolute; top: 1rem; right: 1rem; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.25); color: #fff; background: rgba(255,255,255,.08); border-radius: 999px; cursor: pointer; font-size: 1.7rem; }

/* Location / contact */
.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.location-details { display: grid; gap: .9rem; }
.location-detail { display: flex; gap: .9rem; padding: 1rem; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-soft); }
.location-detail svg { width: 26px; height: 26px; flex: 0 0 auto; color: var(--gold); margin-top: .15rem; }
.location-detail strong { display: block; margin-bottom: .15rem; }
.location-detail span { color: var(--muted); }
.map-card { min-height: 560px; border-radius: var(--radius-xl); overflow: hidden; position: relative; box-shadow: var(--shadow); background: var(--navy); }
.map-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .58; }
.map-overlay { position: absolute; inset: auto 1.2rem 1.2rem 1.2rem; background: rgba(255,255,255,.92); border-radius: 24px; padding: 1.3rem; color: var(--navy); backdrop-filter: blur(14px); }
.map-overlay p { margin: .45rem 0 1rem; }
.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.contact-card { background: rgba(255,255,255,.08); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: 1.4rem; }
.contact-line { display: block; padding: 1rem 0; border-bottom: 1px solid var(--line-dark); }
.contact-line:last-child { border-bottom: 0; }
.contact-line span { display: block; color: var(--gold-light); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .72rem; margin-bottom: .2rem; }
.contact-line strong { color: #fff; font-size: 1.05rem; }
.contact-form { background: #fff; color: var(--ink); border-radius: var(--radius-xl); padding: clamp(1.2rem, 3vw, 2rem); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-group { display: grid; gap: .4rem; margin-bottom: 1rem; }
.form-group.full { grid-column: 1 / -1; }
label { color: var(--navy); font-size: .84rem; font-weight: 800; }
input, textarea, select { width: 100%; border: 1px solid rgba(23,32,51,.14); border-radius: 14px; padding: .9rem 1rem; background: #fbfaf7; color: var(--ink); outline: none; }
textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(184,138,67,.13); }

/* CTA */
.cta-band { border-radius: 34px; background: linear-gradient(135deg, var(--navy), #182f4b 55%, var(--forest)); padding: clamp(2rem, 5vw, 4rem); color: #fff; display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; overflow: hidden; position: relative; box-shadow: var(--shadow); }
.cta-band::after { content: ""; position: absolute; right: -90px; top: -90px; width: 260px; height: 260px; border-radius: 50%; background: rgba(216,179,109,.22); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band p { color: rgba(255,255,255,.75); max-width: 680px; margin-top: .7rem; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 4rem); }

/* Footer */
.site-footer { background: #07111f; color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .75fr); gap: 2rem; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-grid p { color: rgba(255,255,255,.65); max-width: 440px; }
.footer-title { color: var(--gold-light); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; margin-bottom: 1rem; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.72); }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; color: rgba(255,255,255,.55); font-size: .9rem; }

.footer-brand-text { font-family: var(--serif); font-size: 1.65rem; line-height: 1.05; color: #fff; letter-spacing: .03em; }
.footer-brand-text span { display: block; margin-top: .4rem; font-family: var(--sans); font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.58); }


/* Utility */
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.text-white { color: #fff !important; }
.max-760 { max-width: 760px; }
.rounded-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }

@media (max-width: 1060px) {
  .hero-grid, .image-text, .image-text.reverse, .location-grid, .contact-wrap { grid-template-columns: 1fr; }
  .image-text.reverse .image-text-media { order: 0; }
  .hero-visual { min-height: 560px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  body.menu-open { overflow: hidden; }
  .nav { min-height: 74px; }
  .menu-toggle { display: inline-block; }
  .nav-links { position: fixed; left: 1rem; right: 1rem; top: 86px; display: none; flex-direction: column; align-items: stretch; padding: .8rem; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
  body.menu-open .nav-links { display: flex; }
  .nav-links a { justify-content: center; }
  .nav-cta { display: none; }
  .hero { padding-top: 1rem; }
  .hero-grid { gap: 1.3rem; }
  .hero-kpis { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: 440px; }
  .hero-photo-main { inset: 0 0 5rem 0; border-radius: 28px; }
  .hero-photo-small { width: 52%; height: 190px; border-width: 7px; }
  .hero-badge { right: .7rem; bottom: 2rem; width: 55%; padding: 1rem; }
  .split-gallery { grid-template-columns: 1fr; }
  .split-gallery .tall, .split-gallery .stack img { min-height: 300px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { min-height: 220px; }
  .gallery-item.large, .gallery-item.wide { grid-column: span 2; }
  .amenity-panel { grid-template-columns: 1fr; }
  .amenity-panel-body { padding: 1.25rem; }
  .cta-band { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 1.25rem, var(--content)); }
  h1 { font-size: clamp(2.6rem, 14vw, 4rem); }
  .brand-logo { width: 150px; max-width: 50vw; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 1.25rem; }
  .brand-tag { font-size: .62rem; letter-spacing: .18em; }
  .hero-kpis, .feature-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 390px; }
  .hero-photo-small { display: none; }
  .hero-badge { left: .8rem; right: .8rem; width: auto; bottom: .8rem; }
  .page-hero { min-height: 420px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large, .gallery-item.wide { grid-column: span 1; }
  .gallery-item { min-height: 260px; }
  .map-card { min-height: 460px; }
}


/* Requested update: keep the hero without cover background, keep the smaller home H1, and show the hero image first on mobile. */
.hero-copy h1 {
  font-size: clamp(2.45rem, 5.7vw, 5rem);
  line-height: .94;
  max-width: 820px;
}


@media (max-width: 820px) {
  .hero-visual {
    order: -1;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 11.5vw, 3.25rem);
    line-height: .98;
  }
}


/* Full amenities grid on homepage */
.home-amenities-full {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
}

.home-amenities-full .section-head {
  margin-bottom: 2.4rem;
}

.home-amenity-grid,
.amenity-grid {
  align-items: stretch;
}

.amenity-panel {
  height: 100%;
}

.amenity-panel-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.amenity-panel-body p {
  margin-top: .35rem;
}

.center-actions {
  display: flex;
  justify-content: center;
}

@media (min-width: 1061px) {
  .home-amenity-grid .amenity-panel {
    min-height: 292px;
  }

  .home-amenity-grid .amenity-panel img {
    min-height: 292px;
  }
}

@media (max-width: 820px) {
  .home-amenities-full .section-head {
    text-align: left;
  }

  .center-actions {
    justify-content: flex-start;
  }
}

/* Premium light refresh */
.site-header {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: rgba(184, 138, 67, .16);
}

.brand {
  min-width: 0;
}

.brand-logo {
  filter: drop-shadow(0 5px 16px rgba(23, 32, 51, .08));
}

.nav-cta,
.btn-primary {
  background: #c59a53;
  color: #fff;
  box-shadow: 0 16px 38px rgba(184, 138, 67, .22);
}

.nav-cta:hover,
.btn-primary:hover {
  background: #a97931;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: url("assets/optimized/aerial_overview.webp") right center / cover no-repeat;
  padding: 8.5rem 0 5.5rem;
}

.hero-grid {
  display: block;
}

.hero-copy {
  max-width: 760px;
  padding: 0;
}

.hero-copy h1 {
  font-size: 4.55rem;
  line-height: 1.02;
  max-width: 780px;
}

.hero-copy h1 em {
  font-style: normal;
}

.hero-sub {
  color: #4f596b;
}

.hero-visual {
  display: none;
}

.hero-kpi {
  background: rgba(255, 255, 255, .86);
  border-color: rgba(184, 138, 67, .24);
  box-shadow: 0 16px 42px rgba(23, 32, 51, .08);
}

.section-dark,
.feature-card.dark,
.cta-band,
.site-footer {
  background: linear-gradient(180deg, #fff 0%, #fbf7ef 100%);
  color: var(--ink);
}

.section-dark::before,
.cta-band::after {
  display: none;
}

.section-dark p,
.section-dark .section-lead,
.feature-card.dark p,
.feature-card.dark .card-kicker,
.cta-band p,
.footer-grid p,
.footer-links a,
.footer-links span,
.footer-bottom {
  color: var(--muted);
}

.section-dark strong,
.section-dark h2,
.section-dark h3,
.section-dark .section-title,
.section-dark .check-line,
.feature-card.dark h3,
.cta-band h2,
.site-footer .brand-name,
.contact-line strong {
  color: var(--navy);
}

.feature-card.dark {
  border-color: rgba(184, 138, 67, .2);
  box-shadow: var(--shadow-soft);
}

.page-hero {
  background: var(--cream);
  color: var(--navy);
}

.page-hero::after {
  content: none;
  display: none;
}

.page-hero p {
  color: #4f596b;
}

.breadcrumb,
.footer-title,
.contact-line span {
  color: var(--gold);
}

.cta-band {
  border: 1px solid rgba(184, 138, 67, .2);
}

.contact-card {
  background: rgba(255, 255, 255, .78);
  border-color: rgba(184, 138, 67, .18);
}

.contact-line {
  border-bottom-color: rgba(23, 32, 51, .1);
}

.site-footer {
  border-top: 1px solid rgba(184, 138, 67, .18);
}

.footer-grid {
  border-bottom-color: rgba(23, 32, 51, .1);
}

.footer-brand-text {
  color: var(--navy);
}

.footer-brand-text span {
  color: var(--muted);
}

@media (max-width: 820px) {
  h1 { font-size: 3.15rem; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.35rem; }
  .brand-logo { width: 104px; max-width: 34vw; max-height: 46px; }
  .hero {
    min-height: 680px;
    padding: 7rem 0 4rem;
    background: url("assets/optimized/aerial_overview.webp") right center / cover no-repeat;
  }
  .hero-copy h1 {
    font-size: 3rem;
  }
}

@media (max-width: 560px) {
  h1 { font-size: 2.55rem; }
  h2 { font-size: 2rem; }
  .hero-copy h1 { font-size: 2.45rem; }
  .brand-logo { width: 92px; max-width: 40vw; }
}

/* Final light luxury adjustments */
.brand-logo {
  width: min(220px, 24vw);
  max-width: min(220px, 24vw);
  max-height: 58px;
}

.footer-logo {
  width: min(260px, 100%);
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1rem;
}

.hero {
  min-height: 780px;
  background-image: url("assets/optimized/aerial_overview.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 8.5rem 0 5rem;
}

.hero-copy,
.page-hero .container {
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(23, 32, 51, .16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-copy {
  padding: clamp(1.35rem, 3vw, 2.35rem);
}

.page-hero {
  background: var(--cream);
}

.page-hero::after {
  display: none;
}

.page-hero img {
  opacity: 1;
  object-position: center;
}

.page-hero .container {
  width: min(100% - 2rem, 820px);
  margin: 0 auto 4rem max(1rem, calc((100vw - var(--content)) / 2));
  padding: clamp(1.35rem, 3vw, 2.25rem);
}

.image-text {
  align-items: stretch;
}

.image-text-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-text-media {
  min-height: 0;
  height: 100%;
}

.image-text-media img {
  min-height: 0;
  height: 100%;
  aspect-ratio: 16 / 11;
}

.amenity-panel {
  grid-template-columns: 1fr;
  gap: 0;
}

.amenity-panel img {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.amenity-panel-body {
  padding: 1.35rem;
}

.split-gallery .tall,
.split-gallery .stack img,
.gallery-item,
.home-gallery-item img {
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.home-gallery-teaser {
  background: #fff;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.home-gallery-item {
  border: 0;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.home-gallery-item:hover img {
  transform: scale(1.035);
}

.footer-signature {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
}

.footer-signature a {
  color: var(--gold);
  font-weight: 800;
}

.footer-signature a:hover {
  color: var(--navy);
}

main img:not(.brand-logo) {
  cursor: zoom-in;
}

.lightbox {
  gap: .85rem;
}

.lightbox img {
  transition: transform .2s ease;
}

.lightbox-control {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-rotate {
  top: 1rem;
  right: 4.8rem;
  font-size: 1.2rem;
}

@media (max-width: 820px) {
  .brand-logo {
    width: min(150px, 36vw);
    max-width: 34vw;
  }

  .hero {
    min-height: 680px;
    background-image: url("assets/optimized/aerial_overview.webp");
    background-position: right center;
  }

  .page-hero .container {
    margin: 0 auto 2rem;
  }

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

@media (max-width: 560px) {
  .brand-logo {
    width: min(122px, 42vw);
    max-width: 42vw;
  }

  .home-gallery-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-control {
    width: 42px;
    height: 42px;
  }
}

/* Client correction: restored amenities and quiet right-side hero */
.brand {
  max-width: min(300px, 30vw);
  overflow: hidden;
  flex-shrink: 1;
}

.brand-logo {
  width: min(178px, 21vw);
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 3px rgba(18, 35, 28, .48));
}

.footer-logo {
  width: min(230px, 100%);
  max-height: 62px;
  filter: drop-shadow(0 2px 3px rgba(18, 35, 28, .48));
}

.hero {
  min-height: 690px;
  display: grid;
  align-items: center;
  background-image: url("assets/optimized/aerial_overview.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 7rem 0 4rem;
}

.hero-grid {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: inherit;
}

.hero-copy {
  max-width: min(560px, 100%);
  margin-left: auto;
  padding: clamp(1.15rem, 2.4vw, 1.85rem);
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  box-shadow: 0 22px 58px rgba(23, 32, 51, .18);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.hero-copy h1 {
  font-size: clamp(2.05rem, 3.4vw, 3.05rem);
  line-height: 1.08;
  margin-bottom: .9rem;
}

.hero-sub {
  max-width: 100%;
  font-size: clamp(.98rem, 1.15vw, 1.08rem);
  color: #26344b;
  margin-bottom: 1.2rem;
}

.hero-actions {
  margin-bottom: 1.25rem;
}

.hero-kpis {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
}

.hero-kpi {
  padding: .8rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
}

.hero-visual {
  display: none;
}

@media (max-width: 820px) {
  .brand {
    max-width: 38vw;
  }

  .brand-logo {
    width: min(140px, 38vw);
    max-height: 44px;
  }

  .hero {
    min-height: 620px;
    background-position: 38% center;
    padding: 6.5rem 0 3.5rem;
  }

  .hero-copy {
    max-width: min(520px, calc(100vw - 2rem));
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }
}

@media (max-width: 560px) {
  .brand {
    max-width: 44vw;
  }

  .brand-logo {
    width: min(112px, 42vw);
  }

  .hero {
    min-height: 640px;
    background-position: 34% center;
    padding: 6rem 0 3rem;
  }

  .hero-copy {
    background: rgba(255, 255, 255, .68);
    border-radius: 16px;
  }
}

/* Final hero direction: left text, half-image gradient, clear right side */
h1 {
  font-size: clamp(2.15rem, 3.7vw, 3.25rem);
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image: url("assets/optimized/home-hero.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 7rem 0 4.5rem;
}

.hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: block;
  background: linear-gradient(90deg,
    rgba(247, 241, 232, .98) 0%,
    rgba(247, 241, 232, .91) 31%,
    rgba(247, 241, 232, .52) 48%,
    rgba(247, 241, 232, .12) 58%,
    rgba(247, 241, 232, 0) 68%
  );
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: block;
  min-height: auto;
}

.hero-copy {
  max-width: 590px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.15rem, 3.7vw, 3.25rem);
  line-height: 1.08;
  max-width: 660px;
}

.hero-sub,
.page-hero p {
  max-width: 560px;
  color: #26344b;
}

.page-hero {
  min-height: 460px;
  display: grid;
  align-items: center;
  background: var(--cream);
  color: var(--navy);
}

.page-hero img {
  opacity: 1;
  z-index: 0;
  object-position: center center;
}

.page-hero .container {
  width: min(100% - 2rem, var(--content));
  margin-inline: auto;
  margin-bottom: 0;
  padding: 7rem 0 4.5rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-hero .breadcrumb {
  color: #9d7333;
}

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

.amenity-panel {
  grid-template-columns: 1fr;
}

.amenity-panel img {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.amenity-panel-body {
  padding: 1.2rem;
}

.amenity-panel-body h3 {
  font-size: 1.18rem;
}

.amenity-panel-body p {
  font-size: .93rem;
}

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

.gallery-item {
  min-height: 260px;
  aspect-ratio: auto;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 530px;
}

.gallery-item.wide {
  grid-column: span 2;
  min-height: 260px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

@media (max-width: 1020px) {
  .amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  h1,
  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(1.95rem, 7vw, 2.55rem);
  }

  .hero,
  .page-hero {
    min-height: 560px;
  }

  .hero::before,
  .page-hero::after {
    background: linear-gradient(90deg,
      rgba(247, 241, 232, .98) 0%,
      rgba(247, 241, 232, .9) 45%,
      rgba(247, 241, 232, .32) 72%,
      rgba(247, 241, 232, 0) 100%
    );
  }

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

@media (max-width: 640px) {
  .amenity-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 280px;
  }
}

/* Compact contact strip and mobile hero refinements */
.top-contact {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(184, 138, 67, .14);
}

.top-contact-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  color: #344053;
  font-size: .82rem;
  font-weight: 700;
}

.top-contact-inner a {
  white-space: nowrap;
  transition: color .2s ease;
}

.top-contact-inner a:hover {
  color: var(--gold);
}

@media (max-width: 640px) {
  .top-contact-inner {
    min-height: 30px;
    justify-content: center;
    gap: .8rem;
    font-size: .72rem;
    line-height: 1.2;
  }

  .nav {
    min-height: 60px;
  }

  .hero {
    min-height: 520px;
    padding: 3.25rem 0 2rem;
    align-items: center;
  }

  .hero .eyebrow {
    margin-bottom: .42rem;
    font-size: .58rem;
    letter-spacing: .16em;
  }

  .hero-copy h1 {
    margin-bottom: .55rem;
    font-size: clamp(1.62rem, 8.3vw, 2.12rem);
  }

  .hero-sub {
    margin-bottom: .78rem;
    font-size: .82rem;
    line-height: 1.48;
  }

  .hero-actions {
    gap: .45rem;
    margin-bottom: .75rem;
  }

  .hero-actions .btn {
    min-height: 38px;
    padding: .58rem .82rem;
    font-size: .82rem;
  }

  .hero-kpis {
    max-width: 312px;
    gap: .42rem;
  }

  .hero-kpi {
    min-height: 0;
    padding: .48rem .55rem;
    border-radius: 10px;
  }

  .hero-kpi strong {
    font-size: 1rem;
  }

  .hero-kpi span {
    margin-top: .14rem;
    font-size: .55rem;
    line-height: 1.15;
    letter-spacing: .06em;
  }
}

@media (max-width: 380px) {
  .top-contact-inner {
    gap: .48rem;
    font-size: .66rem;
  }
}

@media (max-width: 640px) {
  h1,
  .hero-copy h1,
  .page-hero h1 {
    max-width: 330px;
    font-size: clamp(1.45rem, 6.2vw, 1.72rem);
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  h2,
  .section-title {
    max-width: 320px;
    font-size: clamp(1.55rem, 6.4vw, 2rem);
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .section-head.center .section-title {
    margin-inline: auto;
  }

  .section-head .section-lead {
    max-width: 330px;
  }

  .hero {
    min-height: 500px;
    align-items: start;
    padding: 1.55rem 0 1.35rem;
  }

  .hero-copy {
    max-width: calc(100vw - 1.5rem);
  }

  .hero-sub {
    max-width: 330px;
    font-size: .78rem;
    line-height: 1.45;
  }

  .hero-kpis {
    max-width: 292px;
    gap: .34rem;
  }

  .hero-kpi {
    padding: .38rem .46rem;
  }

  .hero-kpi strong {
    font-size: .92rem;
  }

  .hero-kpi span {
    font-size: .5rem;
  }
}

/* Logo size update */
.brand {
  max-width: min(360px, 36vw);
}

.brand-logo {
  width: min(214px, 25vw);
  max-height: 58px;
  filter: none !important;
}

.footer-logo {
  width: min(276px, 100%);
  max-height: 74px;
  filter: none !important;
}

@media (max-width: 820px) {
  .brand {
    max-width: 46vw;
  }

  .brand-logo {
    width: min(168px, 46vw);
    max-height: 53px;
  }
}

@media (max-width: 640px) {
  .brand {
    max-width: 52vw;
  }

  .brand-logo {
    width: min(134px, 50vw);
    max-height: 50px;
  }
}

/* Client update: clean logo, larger header mark, top header icons, cookie notice and amenity icon cards */
.brand {
  max-width: min(432px, 43vw) !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.brand::before,
.brand::after {
  content: none !important;
  display: none !important;
}

.brand-logo {
  display: block !important;
  width: min(257px, 30vw) !important;
  max-width: 100% !important;
  max-height: 70px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: left center !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

.footer-logo {
  width: min(331px, 100%) !important;
  max-height: 88px !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

.top-contact-inner {
  justify-content: space-between !important;
  gap: .85rem;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  line-height: 1;
  min-width: 0;
}

.top-contact-link svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--gold);
}

.top-contact-email {
  margin-left: auto;
}

.top-contact-link span {
  white-space: nowrap;
}

.amenity-panel img {
  width: 100% !important;
  height: 236px !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
}

.amenity-icon-overview {
  padding-top: clamp(2.8rem, 5vw, 4.8rem);
}

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

.amenity-icon-card {
  height: 100%;
  padding: clamp(1.1rem, 1.7vw, 1.45rem);
  background: #fff;
  border: 1px solid rgba(184, 138, 67, .18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.amenity-icon-card h3 {
  color: var(--navy);
  font-size: 1.12rem;
  margin-bottom: .55rem;
}

.amenity-icon-card p {
  font-size: .92rem;
  line-height: 1.62;
}

.site-footer .footer-links a {
  transition: color .2s ease, text-decoration-color .2s ease;
}

.site-footer .footer-links a:hover,
.site-footer .footer-signature a:hover {
  color: var(--gold) !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.cookie-notice {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  width: min(100% - 2rem, 520px);
  margin-left: auto;
  padding: .95rem;
  display: none;
  align-items: center;
  gap: .9rem;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(184, 138, 67, .24);
  border-radius: 18px;
  box-shadow: 0 22px 65px rgba(11, 23, 40, .16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cookie-notice.is-visible {
  display: flex;
}

.cookie-notice p {
  flex: 1 1 auto;
  margin: 0;
  color: #344053;
  font-size: .88rem;
  line-height: 1.45;
}

.cookie-notice button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: .7rem 1rem;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.cookie-notice button:hover {
  background: #9d7333;
  transform: translateY(-1px);
}

@media (max-width: 1020px) {
  .amenity-icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .brand {
    max-width: 56vw !important;
  }

  .brand-logo {
    width: min(202px, 54vw) !important;
    max-height: 64px !important;
  }
}

@media (max-width: 640px) {
  .top-contact-inner {
    justify-content: space-between !important;
    gap: .35rem;
    font-size: .66rem;
  }

  .top-contact-link {
    gap: .28rem;
  }

  .top-contact-link svg {
    width: 13px;
    height: 13px;
  }

  .top-contact-email {
    justify-content: flex-end;
    text-align: right;
  }

  .hero {
    min-height: 470px !important;
    padding-top: 2.45rem !important;
    padding-bottom: .7rem !important;
    align-items: start !important;
  }

  .amenity-panel img {
    height: 220px !important;
  }

  .amenity-icon-grid {
    grid-template-columns: 1fr;
  }

  .cookie-notice {
    left: .7rem;
    right: .7rem;
    bottom: .7rem;
    width: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-notice button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .top-contact-inner {
    font-size: .58rem;
  }

  .top-contact-link svg {
    display: none;
  }
}



/* Contact form update: real email handler, larger date click area and status messages */
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  display: block;
  margin: 0 0 1rem;
  padding: .9rem 1rem;
  border-radius: 16px;
  font-weight: 700;
  line-height: 1.45;
}
.form-status[hidden] {
  display: none !important;
}
.form-status.is-success {
  color: #153b2e;
  background: rgba(183, 213, 184, .35);
  border: 1px solid rgba(53, 116, 87, .22);
}
.form-status.is-error {
  color: #6b231d;
  background: rgba(255, 230, 222, .7);
  border: 1px solid rgba(179, 72, 54, .25);
}
.form-group.date-field,
.form-group.date-field label,
.form-group.date-field input[type="date"] {
  cursor: pointer;
}
.form-group.date-field input[type="date"] {
  min-height: 52px;
}
