@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/playfair-display-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/playfair-display-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ogf-cream: #fff8f2;
  --ogf-blush: #f8e2e8;
  --ogf-peach: #ffddc9;
  --ogf-mint: #dcead8;
  --ogf-paper: #fffdfb;
  --ogf-ink: #3f3136;
  --ogf-muted: #765f66;
  --ogf-accent: #c87888;
  --ogf-accent-deep: #ac5f6e;
  --ogf-shadow: 0 18px 40px rgba(200, 120, 136, 0.13);
  --ogf-radius: 24px;
}

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

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--ogf-ink);
  background: linear-gradient(180deg, var(--ogf-cream), var(--ogf-paper));
  line-height: 1.6;
}

img { max-width: 100%; display: block; border-radius: 18px; }
a { color: inherit; text-decoration: none; }

.ogf-wrap { width: min(1140px, 92%); margin: 0 auto; }

.ogf-headbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 248, 242, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 120, 136, 0.22);
}

.ogf-headrow {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ogf-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
}

.ogf-brand span { color: var(--ogf-accent); }

.ogf-menu-btn {
  display: none;
  border: 0;
  background: var(--ogf-blush);
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

.ogf-navlist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin: 0;
  padding: 0;
}

.ogf-navlist a {
  font-size: 0.93rem;
  color: var(--ogf-muted);
  border-radius: 999px;
  padding: 0.48rem 0.82rem;
}

.ogf-navlist a:hover,
.ogf-navlist .ogf-active {
  background: var(--ogf-mint);
  color: var(--ogf-ink);
}

.ogf-main-hero { padding: 2.6rem 0 1.5rem; }

.ogf-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--ogf-shadow);
  background: #fff;
}

.ogf-hero-copy {
  padding: 2.8rem;
  background: linear-gradient(145deg, rgba(248, 226, 232, 0.72), rgba(255, 221, 201, 0.5));
}

.ogf-kicker {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.72rem;
  color: var(--ogf-accent-deep);
  font-weight: 700;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
  margin: 0.35em 0 0.5em;
}

h1 { font-size: clamp(2rem, 3.9vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.15rem); }

p { margin: 0 0 1rem; color: var(--ogf-muted); }

.ogf-cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.15rem; }

.ogf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.72rem 1.2rem;
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
}

.ogf-btn-main { background: var(--ogf-accent); color: #fff; }
.ogf-btn-main:hover { background: var(--ogf-accent-deep); }
.ogf-btn-lite { background: #fff; border-color: rgba(200, 120, 136, 0.34); color: var(--ogf-ink); }

.ogf-section { padding: 1.8rem 0; }
.ogf-panel {
  background: #fff;
  border-radius: var(--ogf-radius);
  box-shadow: var(--ogf-shadow);
  padding: 1.55rem;
}

.ogf-grid-3, .ogf-grid-2 { display: grid; gap: 1.1rem; }
.ogf-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ogf-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.ogf-card {
  border: 1px solid rgba(200, 120, 136, 0.16);
  border-radius: 19px;
  padding: 0.95rem;
  background: linear-gradient(165deg, #fff, #fff7f8);
}

.ogf-card h3 { font-size: 1.17rem; margin-top: 0.75rem; }

.ogf-page-intro { margin-top: 1.9rem; }
.ogf-split-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.ogf-list { padding-left: 1.1rem; margin: 0.35rem 0 0; color: var(--ogf-muted); }
.ogf-list li { margin-bottom: 0.45rem; }

.ogf-form { display: grid; gap: 0.9rem; }
.ogf-form label { display: block; margin-bottom: 0.34rem; font-weight: 600; }

.ogf-form input, .ogf-form textarea {
  width: 100%;
  border: 1px solid rgba(118, 95, 102, 0.28);
  border-radius: 14px;
  padding: 0.72rem 0.88rem;
  background: #fffefa;
  font: inherit;
  color: var(--ogf-ink);
}

.ogf-form textarea { min-height: 140px; resize: vertical; }
.ogf-error { color: #af3a4a; min-height: 1em; font-size: 0.88rem; }

.ogf-success {
  display: none;
  margin-top: 0.4rem;
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(100, 150, 90, 0.38);
  background: rgba(220, 234, 216, 0.8);
  color: #2f5d33;
}

.ogf-foot {
  margin-top: 2rem;
  padding: 2.2rem 0;
  background: #fff1e9;
  border-top: 1px solid rgba(200, 120, 136, 0.24);
}

.ogf-foot-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1rem;
}

.ogf-foot-links { display: flex; flex-wrap: wrap; gap: 0.45rem 0.72rem; }
.ogf-foot-links a { color: var(--ogf-muted); font-size: 0.9rem; }
.ogf-disclaimer { margin-top: 0.9rem; font-size: 0.93rem; color: #5f494f; }
.ogf-contactline { color: #5f494f; font-size: 0.94rem; }

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

@media (max-width: 780px) {
  .ogf-menu-btn { display: inline-flex; }
  .ogf-nav { display: none; width: 100%; }
  .ogf-nav.open { display: block; padding-bottom: 0.9rem; }
  .ogf-headrow { flex-wrap: wrap; padding-top: 0.6rem; }
  .ogf-navlist { flex-direction: column; align-items: flex-start; }
  .ogf-hero-grid, .ogf-split-intro, .ogf-grid-3, .ogf-grid-2, .ogf-foot-grid { grid-template-columns: 1fr; }
  .ogf-hero-copy { padding: 1.9rem; }
}
