* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --tiffany: #78cfdb;
  --tiffany-dark: #238f88;
  --tiffany-light: #eefaf9;
  --tiffany-soft: #d6f2ef;
  --tiffany-xsoft: #f3fbfa;

  --gold: #1a6b65;
  --gold-dark: #134f4a;
  --gold-light: #b8dbd9;
  --gold-xlight: #e0f4f3;

  --white: #ffffff;
  --cream: #f8f6f2;
  --offwhite: #f8f6f2;

  --text: #35525a;
  --text-dark: #14353d;
  --text-mid: #56737a;

  --border-gold: rgba(26, 107, 101, 0.25);
  --border-tiffany: rgba(35, 143, 136, 0.22);

  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);

  --radius: 28px;
  --radius-sm: 18px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--tiffany);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 246, 242, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 168, 75, 0.18);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.04);
}

.header-content {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  justify-self: start;
}

.brand-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.brand-logo-box:hover {
  transform: translateY(-1px);
}

.brand-logo {
  width: 110px;
  height: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.brand-role {
  margin-top: 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--tiffany-dark);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.nav a {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  transition: var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--tiffany-dark), var(--gold));
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav a:hover {
  color: var(--gold-dark);
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-header {
  background: linear-gradient(135deg, var(--gold) 0%, #2aada5 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(26, 107, 101, 0.28);
  border: none;
  font-size: 13px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #2aada5 100%);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(26, 107, 101, 0.3);
  border: none;
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid #ffffff;
  color: #ffffff;
}

.btn-header:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(26, 107, 101, 0.38);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 96px;
  background: linear-gradient(180deg, #7dd3e0 0%, #70c6d2 100%);
}

.hero-bg-ornament {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-ornament::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -300px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero-content-split {
  max-width: 1160px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 46px;
}

.hero-tag,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hero-tag {
  color: #ffffff;
}

.hero-tag::before,
.section-tag::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.hero-left h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 3.8vw, 3.5rem);
  line-height: 1.08;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 22px;
  max-width: 700px;
  letter-spacing: -0.01em;
}

.hero-left p {
  font-size: 16px;
  color: rgba(255,255,255,0.96);
  max-width: 600px;
  margin-bottom: 34px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 13.5px;
}

.hero-contact a {
  color: rgba(255,255,255,0.92);
  transition: var(--transition);
}

.hero-contact a:hover {
  color: #ffffff;
}

.dot {
  color: #ffffff;
  opacity: 0.7;
}

.hero-right {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-info-card {
  width: 100%;
}

.hero-info-box {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-lg);
  border-radius: 34px;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-info-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #2aada5);
}

.hero-info-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.78);
  margin-bottom: 14px;
}

.hero-info-tag::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: rgba(255,255,255,0.6);
}

.hero-info-bio {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.38rem;
  line-height: 1.78;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--offwhite);
}

.section-heading .section-tag,
.section-center .section-tag {
  color: var(--tiffany-dark);
}

.section-heading h2,
.section-center h2,
.cta-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 3vw, 3.1rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-heading p,
.cta-box p {
  max-width: 600px;
  color: var(--text-mid);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
}

.section-center {
  text-align: center;
  margin-bottom: 48px;
}

.section-center .section-tag {
  justify-content: center;
}

.section-center .section-tag::before {
  display: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.about-card {
  background: #ffffff;
  border: 1px solid rgba(35, 143, 136, 0.16);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tiffany-dark), var(--gold));
}

.about-card h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-dark);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.about-card ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.about-card li {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 400;
  position: relative;
  padding-left: 26px;
  display: flex;
  align-items: center;
}

.about-card li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tiffany-dark), var(--tiffany));
  flex-shrink: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.09);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--tiffany-dark));
}

.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, transparent, rgba(200, 168, 75, 0.06));
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.13);
  border-color: rgba(200, 168, 75, 0.35);
}

.card:hover::after {
  height: 100%;
}

.card-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7fbfa, #d8f3ef);
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.card h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--text-dark);
  font-size: 1.22rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.card p {
  color: #43616a;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.65;
}

.cta-section {
  background: linear-gradient(180deg, #78cfdb 0%, #70c6d2 100%);
}

.cta-box {
  position: relative;
  text-align: center;
  padding: 72px 32px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.42);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cta-ornament {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  max-width: 640px;
  margin: 0 auto 16px;
  color: #ffffff;
}

.cta-box p {
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.94);
}

.section-tag.light {
  color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid rgba(35, 143, 136, 0.14);
  border-radius: var(--radius-sm);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--border-gold);
}

.contact-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mid);
}

.contact-card strong {
  color: var(--gold-dark);
  font-size: 1rem;
  font-weight: 500;
}

.footer {
  background: var(--offwhite);
  border-top: 1px solid rgba(200, 168, 75, 0.18);
  padding: 30px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.footer-brand span {
  display: block;
  margin-top: 5px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--tiffany-dark);
  font-weight: 600;
}

.footer p {
  color: var(--text-mid);
  font-size: 13px;
}

@media (max-width: 1024px) {
  .hero-content-split,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-info-box {
    max-width: 680px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .header-content {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    justify-items: start;
    gap: 10px 16px;
    padding: 12px 0;
    min-height: unset;
  }

  .brand {
    justify-self: start;
    gap: 10px;
  }

  .brand-logo {
    width: 70px;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .brand-role {
    font-size: 0.6rem;
    margin-top: 5px;
  }

  .btn-header {
    grid-row: 1;
    grid-column: 2;
    min-height: 38px;
    padding: 0 16px;
    font-size: 12px;
    align-self: center;
  }

  .nav {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    gap: 12px 22px;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .nav a {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 64px 0;
  }

  .section {
    padding: 72px 0;
  }

  .hero-left h1 {
    font-size: 2.4rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 52px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 82px;
  }

  .brand-name {
    font-size: 1.85rem;
  }

  .footer-content {
    justify-content: center;
    text-align: center;
  }

  .cta-box {
    padding: 48px 20px;
  }

  .hero-info-box {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .hero-info-bio {
    font-size: 1.12rem;
    line-height: 1.72;
  }
}