@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --light:   #EED8E7;
  --primary: #A75868;
  --accent:  #B4A46A;
  --dark:    #733461;
  --white:   #ffffff;
  --off-white: #fdf8fb;
  --text:    #3a2030;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--off-white);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ─── HEADER ─── */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: var(--white);
  box-shadow: 0 1px 0 rgba(167,88,104,0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 60px;
}

.nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* ─── HAMBURGER ─── */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
}

.bar {
  height: 2px;
  width: 24px;
  background-color: var(--dark);
  transition: 0.3s;
  border-radius: 2px;
}

.nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 76px;
  right: 1.5rem;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(115,52,97,0.12);
  gap: 1.2rem;
  min-width: 180px;
}

/* ─── HERO ─── */
.hero {
  padding: 8rem 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

/* subtle decorative circle */
.hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  top: -100px; right: -100px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  bottom: -80px; left: -60px;
  pointer-events: none;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 0.5rem;
  line-height: 1.8;
  opacity: 0.9;
  font-style: italic;
}

.hero p:last-child {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  opacity: 0.65;
  margin-top: 1rem;
}

/* ─── HERO 2 (about page) ─── */
.hero_2-flex {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem;
  text-align: left;
}

.hero_2-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255,255,255,0.4);
  flex-shrink: 0;
}

.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0;
}

/* ─── CONTENT SECTION ─── */
.content-section {
  flex: 1;
  padding: 5rem 3rem;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.content-section h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

.content-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(167,88,104,0.2);
}

.content-section p {
  font-size: 1rem;
  line-height: 1.9;
  color: #4a2d3a;
  margin-bottom: 1.1rem;
  font-weight: 300;
}

.content-section ul {
  margin: 0.75rem 0 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.content-section ul li {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #4a2d3a;
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
}

.content-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 400;
}

/* ─── DIVIDER ─── */
.content-section h1 + p,
.content-section h2 + p {
  margin-top: 0;
}

/* ─── CONTACT FORM ─── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
  margin-top: 2rem;
}

input, textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(167,88,104,0.25);
  border-radius: 2px;
  font-size: 0.95rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--primary);
}

input::placeholder, textarea::placeholder {
  color: #b89aab;
}

button {
  align-self: flex-start;
  background-color: var(--primary);
  color: white;
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.82rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.25s, transform 0.2s;
}

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

/* ─── FOOTER ─── */
footer {
  text-align: center;
  padding: 2rem 3rem;
  background-color: var(--white);
  color: #b89aab;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(167,88,104,0.1);
  margin-top: auto;
}

/* ─── OFFER CARDS ─── */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0 3rem;
}

.offer-card {
  border-radius: 4px;
  padding: 2.2rem 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(115,52,97,0.12);
}

.offer-card__icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.offer-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.85rem;
  margin-top: 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.offer-card p {
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  font-weight: 300;
}

.offer-card__lead {
  font-weight: 500 !important;
  margin-top: 0.5rem;
}

.offer-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.offer-card ul li {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.8;
  padding: 0.2rem 0 0.2rem 1.2rem;
  position: relative;
}

.offer-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
}

/* Card colour themes */
.offer-card--rose {
  background: linear-gradient(135deg, #f5e6ef 0%, #eedce8 100%);
  color: #5a2035;
}
.offer-card--rose h2,
.offer-card--rose ul li::before { color: var(--primary); }

.offer-card--plum {
  background: linear-gradient(135deg, #e8d5e8 0%, #ddc8e0 100%);
  color: #3a1f3a;
}
.offer-card--plum h2 { color: var(--dark); border-bottom-color: rgba(115,52,97,0.2); }
.offer-card--plum p { color: #3a1f3a; }
.offer-card--plum ul li { color: #3a1f3a; }
.offer-card--plum ul li::before { color: var(--dark); }

.offer-card--gold {
  background: linear-gradient(135deg, #f5f0e0 0%, #ede5c8 100%);
  color: #4a3a10;
}
.offer-card--gold h2,
.offer-card--gold ul li::before { color: #8a7030; }

.offer-card--sage {
  background: linear-gradient(135deg, #e8ede8 0%, #d8e5d5 100%);
  color: #2a3d28;
}
.offer-card--sage h2,
.offer-card--sage ul li::before { color: #4a6b45; }

/* CTA line at bottom */
.offer-cta {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text);
  margin-top: 1rem;
  font-weight: 300;
}

.offer-cta a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.offer-cta a:hover { color: var(--dark); }

@media (max-width: 680px) {
  .offer-grid { grid-template-columns: 1fr; }
}


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1,
.hero p {
  animation: fadeUp 0.8s ease both;
}

.hero h1 { animation-delay: 0.1s; }
.hero p  { animation-delay: 0.25s; }

.content-section h1,
.content-section h2,
.content-section p,
.content-section ul {
  animation: fadeUp 0.8s ease both;
}

.content-section h1             { animation-delay: 0.15s; }
.content-section p:nth-of-type(1) { animation-delay: 0.28s; }
.content-section p:nth-of-type(2) { animation-delay: 0.38s; }
.content-section p:nth-of-type(3) { animation-delay: 0.48s; }
.content-section p:nth-of-type(4) { animation-delay: 0.58s; }
.content-section p:nth-of-type(5) { animation-delay: 0.68s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  header { padding: 1rem 1.5rem; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .content-section { padding: 3.5rem 1.5rem; }
  .hero { padding: 5rem 1.5rem; }
  .hero_2-flex { padding: 2rem 1.5rem; gap: 1.5rem; }
  footer { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero_2-flex { flex-direction: column; text-align: center; }
  .hero_2-img { width: 90px; height: 90px; }
  button { align-self: stretch; text-align: center; }
}