@charset "UTF-8";

:root {
  --ink: #1a1a1a;
  --ink-soft: #2d2d2d;
  --text: #4a4a4a;
  --muted: #7a7a7a;
  --hairline: rgba(26, 26, 26, 0.1);
  --surface: #faf8f5;
  --surface-pure: #ffffff;
  --panel: #f5f2ed;
  --cream: #ede8e0;
  --gold: #b8976a;
  --gold-light: #d4c4a8;
  --gold-soft: rgba(184, 151, 106, 0.12);
  --gold-hairline: rgba(184, 151, 106, 0.25);
  --gold-glow: rgba(184, 151, 106, 0.08);
  --glass-bg: rgba(250, 248, 245, 0.88);
  --glass-border: rgba(26, 26, 26, 0.06);
  --glass-blur: 16px;
  --glass-radius: 4px;
  --focus: rgba(184, 151, 106, 0.5);
  --max-width: 1280px;
  --hero-photo-width: 420px;
  --gap: 72px;
  --radius: 4px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.04);
  --shadow-lg: 0 8px 32px rgba(26, 26, 26, 0.1);
  --shadow-photo: 0 16px 48px rgba(26, 26, 26, 0.15), 0 4px 12px rgba(26, 26, 26, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--panel);
}

body {
  font-family: var(--font-sans);
  background: var(--surface);
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: var(--panel);
  border-left: 1px solid var(--hairline);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-light) 100%);
  border-radius: 5px;
  border: 2px solid var(--panel);
  transition: background 0.3s ease;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold) 0%, #a07d52 50%, var(--gold) 100%);
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
  background: var(--panel);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--ink);
}

strong {
  font-weight: 600;
  color: var(--ink);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  max-width: 60ch;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--surface);
  box-shadow: 0 2px 8px #1a1a1a26, inset 0 1px #ffffff0d;
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
  color: var(--surface);
  box-shadow: 0 4px 16px #1a1a1a33, inset 0 1px #ffffff14;
  transform: translateY(-1px);
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translate(2px);
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 1.5rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(./index-background.jpg) center center / cover no-repeat;
  opacity: 0.28;
  filter: sepia(20%) saturate(85%) brightness(1.02);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 90% 70% at 15% 35%, rgba(184, 151, 106, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 85% 55%, rgba(184, 151, 106, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(212, 196, 168, 0.12) 0%, transparent 40%),
    linear-gradient(180deg, #faf8f533, #faf8f580 40%, #faf8f5cc);
}

.decor-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.decor-line {
  position: absolute;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 15%, var(--gold) 85%, transparent 100%);
  opacity: 0.18;
}

.decor-line::before,
.decor-line::after {
  content: "◆";
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  font-size: 8px;
  color: var(--gold);
  opacity: 0.6;
}

.decor-line::before {
  top: -12px;
}

.decor-line::after {
  bottom: -12px;
}

.decor-line--left {
  left: 5%;
}

.decor-line--right {
  right: 5%;
}

.decor-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image: radial-gradient(var(--ink) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr var(--hero-photo-width);
  gap: var(--gap);
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-panel {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  padding: 2.5rem 2.75rem 2.75rem;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 1px #ffffff80 inset, 0 8px 32px #1a1a1a0f;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.panel-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  opacity: 0.35;
}

.panel-corner--tl {
  top: 14px;
  left: 14px;
  border-top-width: 1px;
  border-left-width: 1px;
}

.panel-corner--tr {
  top: 14px;
  right: 14px;
  border-top-width: 1px;
  border-right-width: 1px;
}

.panel-corner--bl {
  bottom: 14px;
  left: 14px;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.panel-corner--br {
  bottom: 14px;
  right: 14px;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  text-wrap: balance;
  color: var(--ink);
  line-height: 1.05;
}

.title-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.ornament-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0.5;
}

.ornament-line:last-child {
  background: linear-gradient(90deg, transparent 0%, var(--gold) 100%);
}

.ornament-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.7;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero-body {
  border-left: 2px solid var(--gold-soft);
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.hero-lead {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 0.65rem;
  max-width: 46ch;
  font-weight: 400;
}

.hero-lead--accent {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.hero-micro {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 44ch;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-group .btn {
  width: 100%;
}

.hero-photo-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-photo-frame {
  position: relative;
  padding: 10px;
  background: linear-gradient(145deg, var(--surface-pure) 0%, var(--cream) 50%, var(--surface-pure) 100%);
  border: 1px solid var(--gold-hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-photo);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--gold-light);
  border-radius: 2px;
  opacity: 0.3;
  pointer-events: none;
}

.frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  opacity: 0.5;
  z-index: 2;
}

.frame-corner--tl {
  top: -6px;
  left: -6px;
  border-top-width: 2px;
  border-left-width: 2px;
}

.frame-corner--tr {
  top: -6px;
  right: -6px;
  border-top-width: 2px;
  border-right-width: 2px;
}

.frame-corner--bl {
  bottom: -6px;
  left: -6px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.frame-corner--br {
  bottom: -6px;
  right: -6px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.hero-photo-container {
  position: relative;
  z-index: 1;
  border-radius: 2px;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
  }
  .hero-panel {
    padding: 2rem 2.25rem 2.25rem;
  }
  .hero-title {
    font-size: clamp(2.25rem, 4vw, 2.75rem);
  }
  .hero-lead,
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .decor-line--left {
    left: 2%;
  }
  .decor-line--right {
    right: 2%;
  }
}

@media (max-width: 850px) {
  .hero {
    min-height: auto;
    padding: 2rem 0 3rem;
    align-items: flex-start;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-content {
    text-align: center;
    order: 2;
  }
  .hero-panel {
    padding: 1.75rem 1.75rem 2rem;
    height: auto;
  }
  .hero-eyebrow,
  .title-ornament {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-body {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--gold-soft);
    padding-top: 1rem;
    flex: none;
  }
  .hero-lead,
  .hero-micro {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-group {
    justify-content: center;
  }
  .hero-photo-wrapper {
    max-width: 240px;
    margin: 0 auto;
    order: 1;
    height: auto;
  }
  .hero-photo-frame {
    flex: none;
  }
  .hero-photo {
    height: auto;
    aspect-ratio: 3 / 4;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .hero-lead {
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
  }
  .hero-lead--accent {
    font-size: 1.05rem;
  }
  .hero-micro {
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
  }
  .decor-lines {
    display: none;
  }
  .panel-corner {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 0 2.5rem;
  }
  .hero-panel {
    padding: 1.5rem 1.25rem 1.75rem;
  }
  .hero-photo-wrapper {
    max-width: 200px;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-subtitle {
    font-size: 0.85rem;
  }
  .hero-lead {
    font-size: 0.82rem;
  }
  .hero-lead--accent {
    font-size: 0.95rem;
  }
  .hero-micro {
    font-size: 0.78rem;
    margin-bottom: 1.25rem;
  }
  .panel-corner {
    display: none;
  }
  .frame-corner {
    width: 12px;
    height: 12px;
  }
  .title-ornament {
    gap: 8px;
  }
  .ornament-line {
    width: 24px;
  }
  .ornament-diamond {
    width: 5px;
    height: 5px;
  }
}


