:root {
  --navy: #0f172a;
  --deep-blue: #17324d;
  --granite: #c45a3c;
  --granite-dark: #a84831;
  --sand: #f6f0e6;
  --sand-dark: #ead8c2;
  --pine: #244334;
  --text: #111827;
  --muted: #5f6b7a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
  --soft-shadow: 0 12px 38px rgba(15, 23, 42, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.9rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.35rem, 4vw, 4.4rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.65rem;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: var(--white);
  background: rgba(15, 23, 42, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  white-space: nowrap;
}

.logo-mark {
  color: var(--granite);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--granite);
  text-decoration: none;
  font-weight: 650;
  transition: transform 160ms ease, background 160ms ease;
}

.header-button:hover {
  background: var(--granite-dark);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.70)),
    url("images/hero.jpg"),
    linear-gradient(135deg, #0f172a, #17324d);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 24%, rgba(196, 90, 60, 0.42), transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.08), transparent 26%);
}

.hero-content {
  position: relative;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--granite-dark);
  font-weight: 800;
  font-size: 0.77rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.light {
  padding: 9px 15px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.eyebrow.light-accent {
  color: #f0b08e;
}

.hero-text {
  max-width: 700px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 18px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--granite);
  color: var(--white);
}

.button.primary:hover {
  background: var(--granite-dark);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button.secondary:hover {
  color: var(--navy);
  background: var(--white);
}

.button.light,
.button.white {
  background: var(--white);
  color: var(--navy);
}

.button.light:hover,
.button.white:hover {
  background: rgba(255, 255, 255, 0.88);
}

.button.outline-white {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.button.outline-white:hover {
  background: var(--white);
  color: var(--granite-dark);
}

.hero-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.hero-card p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.card-icon,
.icon,
.profile-icon,
.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.card-icon {
  margin-bottom: 28px;
  color: #f0b08e;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--granite);
  border-radius: 999px;
}

.section {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}

.section-intro {
  max-width: 820px;
}

.section-intro > p:not(.eyebrow),
.two-column p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.cards {
  display: grid;
  gap: 24px;
  margin-top: 54px;
}

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

.info-card,
.profile-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--soft-shadow);
}

.info-card {
  padding: 34px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.info-card .icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  background: #f1d3bf;
  border-radius: 18px;
}

.info-card p {
  margin-top: 16px;
  color: var(--muted);
}

.dark-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 104px max(20px, calc((100vw - 1220px) / 2));
  background: var(--navy);
  color: var(--white);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.76);
}

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

.feature-box {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(196, 90, 60, 0.36), rgba(255, 255, 255, 0.08));
  box-shadow: var(--shadow);
}

.feature-box ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.80);
}

.profile-card {
  padding: 34px;
}

.profile-card h2 {
  font-size: clamp(2.2rem, 3vw, 3.6rem);
}

.profile-card > p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

.profile-icon {
  margin-bottom: 24px;
  color: var(--granite);
  font-size: 3rem;
}

.notice {
  margin-top: 28px;
  padding: 18px;
  border-radius: 18px;
  background: var(--sand);
  color: #485263;
  font-size: 0.92rem;
}

blockquote {
  margin: 34px 0 0;
  padding-left: 24px;
  border-left: 4px solid var(--granite);
  color: #1f2937;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.45;
}

.white-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 104px max(20px, calc((100vw - 1220px) / 2));
  background: var(--white);
}

.travel-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--deep-blue);
  color: var(--white);
  box-shadow: var(--shadow);
}

.travel-card p {
  color: rgba(255, 255, 255, 0.76);
}

.travel-card .button {
  margin-top: 28px;
}

.cta-section {
  padding: 104px 20px;
  background: var(--granite);
  color: var(--white);
  text-align: center;
}

.cta-content {
  max-width: 860px;
  margin: 0 auto;
}

.cta-icon {
  margin-bottom: 24px;
  font-size: 3rem;
}

.cta-section h2 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.cta-section p {
  max-width: 700px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.cta-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 4vw, 64px);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.60);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .main-nav,
  .header-button {
    display: none;
  }

  .hero-content,
  .two-column,
  .cards.three {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero-card {
    max-width: 620px;
  }

  .section,
  .dark-section,
  .white-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 15px 18px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .hero-content,
  .section {
    width: min(100% - 28px, 1220px);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-card,
  .info-card,
  .profile-card,
  .feature-box,
  .travel-card {
    border-radius: 24px;
    padding: 26px;
  }

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


.image-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 20px;
  margin-top: 34px;
}

.gallery-item,
.section-photo,
.travel-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.gallery-item img,
.section-photo img,
.travel-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item {
  min-height: 240px;
}

.gallery-item.large {
  min-height: 240px;
}

.section-photo {
  min-height: 420px;
}

.travel-photo {
  margin-bottom: 24px;
  min-height: 240px;
  box-shadow: none;
}

.travel-photo img {
  border-radius: 18px;
}

.about-grid {
  align-items: center;
}

@media (max-width: 980px) {
  .image-gallery {
    grid-template-columns: 1fr;
  }

  .section-photo {
    min-height: 300px;
  }
}


.weather-widget {
  margin-top: 30px;
  padding: 22px;
  max-width: 420px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.weather-widget-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.weather-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #f1d3bf;
  font-size: 1.8rem;
}

.weather-label {
  margin: 0;
  color: var(--granite-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.weather-widget h3 {
  margin-top: 2px;
  font-size: 1.45rem;
}

.weather-main {
  display: grid;
  gap: 2px;
  margin-top: 18px;
}

.weather-main span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  line-height: 1;
  color: var(--navy);
}

.weather-main small {
  color: var(--muted);
  font-size: 0.98rem;
}

.weather-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: #4b5563;
  font-size: 0.9rem;
}

.weather-details span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--sand);
}
