@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

:root {
	/* Base Neutrals */
	--cream: #FFF9F4;
	--cream-2: #FDF3EB;
	--white: #FFFFFF;
	--cream-soft: #FFFEFD;

	/* Blush / Pink */
	--blush: #F7CFCB;
	--blush-soft: #FBE8E6;

	/* Fresh Sage */
	--sage: #8FAF9A;
	--sage-soft: #E6F0EA;
	--sage-deep: #5F7F6B;

	/* Buttons */
	--btn: #7EA691;

	/* Gold Accents */
	--gold: #C9A45D;
	--gold-hi: #EBD9AE;
	--gold-deep: #A8833C;

	/* Text */
	--ink: #2B2A28;
	--ink-mid: #5B5650;
	--body: #6B6761;

	/* Shape + Depth */
	--r-sm: 2px;
	--r-md: 2px;

	--sh-soft: 0 18px 55px rgba(0,0,0,0.06);
	--sh-card: 0 22px 70px rgba(0,0,0,0.07);
	--radius-card: 12px;
	--radius-pill: 999px;
}

body {
	background: var(--cream);
	color: var(--body);
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	letter-spacing: 0.3px;
	margin: 0;
	min-height: 100vh;
  overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
	color: var(--ink);
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	letter-spacing: 0.6px;
}

/* Content wrapper for sections */
/* Navbar styles */
.navbar {
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar-scrolled {
  background: rgba(255,249,244,0.88) !important;
  box-shadow: 0 4px 16px rgba(201,164,93,0.08);
    border-bottom: 1px solid rgba(201,164,93,0.08);
      backdrop-filter: blur(20px);
}
.navbar-list {
  flex: 1;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 1.2rem;
}
.navbar-link {
  color: var(--body);
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.2s;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.navbar-link::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-hi), var(--gold), var(--gold-hi), transparent);
  border-radius: 1px;
  transition: width 0.35s cubic-bezier(.4,0,.2,1);
  z-index: 2;
}
.navbar-link:hover::after, .navbar-link:focus::after {
  width: 100%;
}
.navbar-link:hover, .navbar-link:focus {
  color: var(--gold-deep);
}

.navbar-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem !important;
  color: var(--gold);
  letter-spacing: 0.1em;
}








.tm-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
  gap: 32px;
  position: relative;
  top: -18px;
}
.content-wrapper {
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding-left: 1rem;
	padding-right: 1rem;
}

/* Base button style */
.btn, button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-width: 140px;
	padding: .9rem 2.2rem;
	font-family: 'Montserrat', sans-serif;
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	border-radius: .15rem;
	cursor: pointer;
	border: none;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition: transform .35s cubic-bezier(.4, 0, .2, 1),
		box-shadow .35s cubic-bezier(.4, 0, .2, 1),
		background-color .35s cubic-bezier(.4, 0, .2, 1),
		color 0.2s;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
}

/* Button shine effect */
.btn::before {
	content: '';
	position: absolute;
	inset: -40% auto -40% -55%;
	width: 55%;
	transform: translateX(0) skewX(-18deg);
	background: linear-gradient(90deg, transparent, rgba(231, 214, 168, .55), transparent);
	opacity: 0;
	pointer-events: none;
	transition: transform .6s cubic-bezier(.4, 0, .2, 1), opacity .6s ease;
}
.btn:hover::before {
	transform: translateX(165%) skewX(-18deg);
	opacity: .5;
}

.btn-secondary::before,
.btn-tertiary::before {
    display: none;
}

.btn>* {
	position: relative;
	z-index: 1;
}

/* Primary button: sage, hover gold */
.btn-primary {
	background: var(--sage);
	color: var(--white);
	border: 1px solid rgba(149, 174, 155, .4);
	box-shadow: 0 8px 20px -4px rgba(31, 42, 40, .18);
	 position: relative;
	 overflow: hidden;
	 margin-top: 4px;
}

	/* Gleam effect for primary button */
	.btn-primary::after {
		content: '';
		position: absolute;
		top: 0;
		left: -60%;
		width: 50%;
		height: 100%;
		background: linear-gradient(120deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.32) 50%, rgba(255,255,255,0.12) 100%);
		opacity: 0.7;
		pointer-events: none;
		transform: skewX(-18deg);
		transition: left 0.7s cubic-bezier(.4,0,.2,1), opacity 0.4s;
		z-index: 2;
	}
	.btn-primary:hover::after, .btn-primary:focus::after {
		left: 110%;
		opacity: 0.8;
	}

.btn-primary:hover, .btn-primary:focus {
	background: var(--gold-hi);
	color: var(--ink);
	border-color: rgba(201, 164, 93, .5);
	box-shadow: 0 14px 28px -6px rgba(31, 42, 40, .22);
	outline: none;
	transform: translateY(-3px);
}

/* Secondary button: soft blush, sage text, sage hover */
.btn-secondary {
	background: rgba(143, 175, 154, 0.18); /* transparent sage */
	color: var(--sage-deep);
	border: 1.5px solid var(--sage);
}
.btn-secondary:hover, .btn-secondary:focus {
	background: rgba(143, 175, 154, 0.18); /* transparent sage */
	color: var(--sage-deep);
	border-color: var(--sage-deep);
	box-shadow: 0 12px 32px 0 rgba(143, 175, 154, 0.16), 0 2px 8px 0 rgba(0,0,0,0.10);
	outline: none;
	transform: translateY(-2px);
}

.btn-tertiary {
	background: rgba(255, 249, 244, 0.28); /* transparent cream */
	color: var(--cream);
	border: 1px solid var(--cream-2);
	backdrop-filter: blur(6px);
	}

.btn-tertiary:hover, .btn-tertiary:focus {
	background: rgba(255, 249, 244, 0.36); /* slightly less transparent on hover */
	color: var(--cream);
	border-color: var(--cream-2);
	box-shadow: 0 12px 32px 0 rgba(253, 243, 235, 0.16), 0 2px 8px 0 rgba(0,0,0,0.10);
	outline: none;
	transform: translateY(-2px);
}

/* bare button:hover removed — each .btn-* variant handles its own hover */


.hero-box-bg {
  background: rgba(255, 254, 253, 0.55); /* #FFFEFD with alpha transparency */
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(44,38,28,0.10);
	backdrop-filter: blur(20px);
	max-width: 1000px;
	width: 94%;
	padding-left: 3rem;
	padding-right: 3rem;
	padding-top: 4rem;
	padding-bottom: 5rem;
	border: 1px solid var(--cream);
}


.gradient-top-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--blush), var(--gold), var(--sage-deep), var(--blush));
  z-index: 1000;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  pointer-events: none;
}

.barlight-full {
    display: block;
    width: 8rem;
    margin: 1.75rem auto .7rem auto;
	width: 70% !important;
	display: inline-block;
    height: 1px;
    width: 3rem;
    background: linear-gradient(90deg, transparent 0%, var(--gold-hi) 20%, var(--gold) 50%, var(--gold-hi) 80%, transparent 100%);
    box-shadow: 0 1px 6px 0 rgba(201,164,93,0.10);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
	opacity: 0.8;
}

.barlight-left {
	margin-right: -12px;
}

.barlight-right {
	margin-left: -12px;
}

/* Simple marquee effect for hero band */
.marquee-track {
	display: flex;
	align-items: center;
	white-space: nowrap;
	animation: marquee-scroll 40s linear infinite;
}
.marquee-item {
	color: var(--cream-soft);
	font-weight: 100;
	margin: 0 3rem 0 3rem;
  padding-top: 2px;
  letter-spacing: 0.1em;
  font-size: 1.25em;
  font-family: 'Dancing Script', 'Pacifico', 'Brush Script MT', cursive, serif;
  opacity: 0.8;
}
.marquee-dot {
	color: var(--gold-hi);
	font-size: 1.1em;
}
@keyframes marquee-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}


/* Signature Offerings & Specialties Section Styles */

#services {
    padding: 9rem 0 7rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--cream) 0%, var(--cream-2) 100%);
}
@media (max-width: 640px) {
  #services { padding: 5rem 0 4rem; }
}

/* Make hero buttons same width on mobile */
@media (max-width: 640px) {
  #hero .btn,
  #hero button {
    width: 100% !important;
    min-width: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  #hero .flex.flex-col.sm\:flex-row {
    flex-direction: column !important;
    gap: 1rem;
    align-items: stretch;
  }
}

/* --- All .off-*, .fill-*, .badge-*, .hero-diag, etc. styles from footer.html should be copied here. --- */

.off-wrap { max-width: 1380px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.off-header { display: grid; grid-template-columns: 1fr auto; align-items: end; margin-bottom: 4.5rem; }
@media (max-width: 700px) { .off-header { grid-template-columns: 1fr; } }
.off-kicker {display: inline-flex; align-items: center; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 0.75rem; }
.off-kicker::before { content: ''; width: 28px; height: 2px; background: linear-gradient(to right, var(--rose), var(--rose-deep)); border-radius: 2px; flex-shrink: 0; }
.off-kicker::after { content: ''; width: 28px; height: 2px; background: linear-gradient(to left, var(--rose), var(--rose-deep)); border-radius: 2px; flex-shrink: 0; }
.off-title { 
	font-size: 2rem;
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 500;
	letter-spacing: 0.6px;
	color: var(--ink);
	line-height: 1.1;
	text-transform: none;
}
@media (min-width: 640px) {
	.off-title {
		font-size: 2.25rem;
	}
}
@media (min-width: 768px) {
	.off-title {
		font-size: 2.75rem;
	}
}
@media (min-width: 1024px) {
	.off-title {
		font-size: 3.25rem;
	}
}
.off-title em { font-style: italic; color: var(--sage-deep); font-weight: 300; }
.off-title strong {
	font-weight: 400;
	font-size: 1.65em;
	line-height: 1;
	display: inline-block;
	background: linear-gradient(90deg, var(--gold) 0%, var(--gold-hi) 40%, var(--gold) 70%, var(--gold-deep) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	vertical-align: middle;
	opacity: 0.6;
	margin-left: -10px;
	margin-left: -10px;
	margin-right: -10px;
	margin-top: -10px;
}
.off-header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; padding-bottom: 0.7rem; }
.off-intro-text { font-size: 1rem; font-weight: 300; line-height: 1.85; color: var(--body); max-width: 560px; text-align: right; }
.off-cta-pill { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--sage); color: #fff; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 10px 22px; border-radius: var(--radius-pill); text-decoration: none; box-shadow: 0 8px 24px rgba(61, 92, 70, 0.25); transition: background 0.3s, transform 0.3s, box-shadow 0.3s; }
.off-cta-pill:hover { background: var(--sage-deep); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(61, 92, 70, 0.30); }
.off-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 420px 340px; gap: 16px; }
@media (max-width: 1100px) { .off-grid { grid-template-columns: repeat(6, 1fr); grid-template-rows: auto; } .off-card { grid-column: span 3 !important; grid-row: auto !important; min-height: 320px; } .off-card--hero { grid-column: span 6 !important; min-height: 380px; } }
@media (max-width: 680px) { .off-grid { grid-template-columns: 1fr; } .off-card { grid-column: span 1 !important; min-height: 280px; }
.off-card--hero { min-height: 340px; } }
.off-card { position: relative; overflow: hidden; border-radius: var(--radius-card); cursor: pointer; isolation: isolate; box-shadow: 0 6px 28px rgba(20, 18, 14, 0.10); transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1); }
.off-card:hover { transform: translateY(-10px) scale(1.012); box-shadow: 0 24px 60px rgba(20, 18, 14, 0.16); }
.off-card--hero { grid-column: span 5; grid-row: span 2; }
.off-card--tall { grid-column: span 4; grid-row: span 2; }
.off-card--wide { grid-column: span 3; grid-row: span 1; }
.off-card--small-a { grid-column: span 3; grid-row: span 1; }
.off-card--small-b { grid-column: span 4; grid-row: span 1; }
.off-card--small-c { grid-column: span 4; grid-row: span 1; }
.fill-sage-rich { background: radial-gradient(ellipse 130% 100% at 20% 110%, rgba(61, 92, 70, 0.55) 0%, transparent 55%), linear-gradient(145deg, #A8C8AE 0%, #6A9A78 35%, #4A7A58 65%, #3D5C46 100%); }
.fill-rose-rich { background: radial-gradient(ellipse 120% 90% at 80% 10%, rgba(196, 96, 78, 0.35) 0%, transparent 50%), linear-gradient(135deg, #F4B0A4 0%, #E8897A 40%, #D46858 75%, #C05040 100%); }
.fill-gold-rich { background: radial-gradient(ellipse 140% 80% at 10% 90%, rgba(160, 120, 40, 0.40) 0%, transparent 55%), linear-gradient(140deg, #EDD498 0%, #D4AA58 40%, #C8A04A 70%, #A07828 100%); }
.fill-blush-rich { background: radial-gradient(ellipse 120% 100% at 90% 0%, rgba(196, 96, 78, 0.20) 0%, transparent 50%), linear-gradient(150deg, #FBE8E4 0%, #F0C0B4 45%, #E4A098 80%, #D48078 100%); }
.fill-sage-pale { background: radial-gradient(ellipse 100% 80% at 50% 120%, rgba(61, 92, 70, 0.30) 0%, transparent 55%), linear-gradient(155deg, #D4E8D8 0%, #BCDBC4 40%, #A0C8A8 70%, #7FA688 100%); }
.off-card-deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
/* Add zoom effect to off-card-deco background image on hover */
.off-card-deco {
  transition: background-size 0.6s cubic-bezier(.23, 1, .32, 1), transform 0.6s cubic-bezier(.23, 1, .32, 1);
}
.off-card:hover .off-card-deco {
  transform: scale(1.04);
}
.off-card-deco-ring { position: absolute; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 50%; transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease; }
.off-card:hover .off-card-deco-ring { transform: scale(1.12); opacity: 0.32; }
.off-card-deco-lines { position: absolute; bottom: -20px; right: -20px; width: 160px; height: 160px; opacity: 0.12; }
.off-card-deco-lines line { stroke: white; stroke-width: 0.8; }
.off-card-petal { position: absolute; border-radius: 50% 0 50% 0; background: rgba(255, 255, 255, 0.10); pointer-events: none; transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1); }
.off-card:hover .off-card-petal { transform: rotate(20deg) scale(1.2); }
.off-card-content { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem 1.75rem; background: linear-gradient(to top, rgba(20, 18, 14, 0.72) 0%, rgba(20, 18, 14, 0.15) 45%, transparent 75%); transition: background 0.45s ease; }
.off-card:hover .off-card-content { background: linear-gradient(to top, rgba(20, 18, 14, 0.8) 0%, rgba(20, 18, 14, 0.28) 55%, transparent 80%); }
.off-card--hero .off-card-content { background: linear-gradient(to top, rgba(20, 18, 14, 0.8) 0%, rgba(20, 18, 14, 0.12) 50%, transparent 72%); }
.off-card-index { font-family: 'Cormorant Garamond', serif; font-size: 0.72rem; font-weight: 400; letter-spacing: 0.24em; color: rgba(255, 255, 255, 0.55); text-transform: uppercase; margin-bottom: 0.35rem; }
.off-card-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 2.5vw, 2.4rem); font-weight: 400; line-height: 1.1; color: #fff; margin-bottom: 0.5rem; }
.off-card--hero .off-card-name { font-size: clamp(2rem, 3.5vw, 3.2rem); }
.off-card-desc { font-size: 0.84rem; font-weight: 300; line-height: 1.7; color: rgba(255, 255, 255, 0.78); max-height: 0; overflow: hidden; transform: translateY(8px); transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1), transform 0.5s ease, opacity 0.4s ease; opacity: 0; }
.off-card:hover .off-card-desc { max-height: 120px; opacity: 1; transform: translateY(0); }
.off-card-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); margin-top: 0.75rem; transform: translateY(6px); transition: color 0.3s, gap 0.3s, opacity 0.35s, transform 0.45s cubic-bezier(0.23, 1, 0.32, 1); opacity: 0; }
.off-card:hover .off-card-link { opacity: 1; transform: translateY(0); color: #fff; gap: 0.75rem; }
.off-card-link i { font-size: 0.65rem; }
.off-card-badge { position: absolute; top: 1.25rem; left: 1.25rem; z-index: 4; display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: var(--radius-pill); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; backdrop-filter: blur(8px); transition: transform 0.3s; }
.off-card:hover .off-card-badge { transform: translateY(-2px); }
.badge-sage { background: rgba(127, 166, 136, 0.88); color: #fff; }
.badge-rose { background: rgba(232, 137, 122, 0.88); color: #fff; }
.badge-gold { background: rgba(200, 160, 74, 0.88); color: #fff; }
.badge-blush { background: rgba(240, 200, 192, 0.88); color: var(--ink); }
.badge-cream { background: rgba(255, 255, 255, 0.82); color: var(--ink-mid); }
.off-card-icon { position: absolute; top: 1.25rem; right: 1.25rem; z-index: 4; width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); border: 1px solid rgba(255, 255, 255, 0.30); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.85rem; backdrop-filter: blur(6px); transition: background 0.3s, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.off-card:hover .off-card-icon { background: rgba(255, 255, 255, 0.28); transform: scale(1.1) rotate(-8deg); }

/* BOTTOM STRIP — Stats + CTA */
.off-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0;
  margin-top: 1rem;
  background: var(--cream-soft);
  border: 1px solid rgba(200, 160, 74, 0.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(20, 18, 14, 0.06);
}

@media (max-width: 1100px) { .off-strip { grid-template-columns: 1fr 1fr; } .off-strip-cta { grid-column: span 2; } }
@media (max-width: 560px) { .off-strip { grid-template-columns: 1fr; } .off-strip-cta { grid-column: span 1; } }
.off-strip-stat {
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-right: 1px solid rgba(200, 160, 74, 0.12);
  position: relative;
  align-items: center;
  text-align: center;
}

.off-stat-num {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2;
	color: var(--gold);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.off-stat-label {
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: 0.12em;
	color: var(--body);
	line-height: 1.4;
	text-align: center;
}
.off-strip-cta { background: linear-gradient(145deg, var(--sage-deep) 0%, var(--sage) 100%); padding: 1.75rem 2rem; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 0.9rem; position: relative; overflow: hidden; }
.off-strip-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.10) 0%, transparent 60%); pointer-events: none; }
.off-strip-cta-label { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; font-style: italic; color: #fff; line-height: 1.2; }
.off-strip-cta-label-bg {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -54%);
    pointer-events: none;
    z-index: 0;
}
.off-strip-cta-label-bg::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.2);
    top: 60px;
    left: 60px;
}
.off-strip-cta-label {
    position: relative;
    z-index: 1;
}
/* DIAGONAL ACCENT LINE ON HERO CARD */
.off-card--hero .hero-diag { position: absolute; bottom: 0; right: 0; width: 220px; height: 220px; background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.06) 50%); pointer-events: none; z-index: 2; transition: opacity 0.4s; }
.off-card--hero:hover .hero-diag { opacity: 0; }




.about-signoff {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 1rem;
}
.about-signoff > div:first-child {
	color: var(--ink-mid);
}
.about-signature {
	font-family: 'Dancing Script', 'Pacifico', 'Brush Script MT', cursive, serif !important;
	font-size: 2.1rem;
	color: rgba(201, 164, 93, 0.65) !important;
	margin-left: 2px;
	text-shadow: 0 2px 8px rgba(201,164,93,0.10);
}
/* About photo frame styling */
.about-photo-frame {
	max-width: 560px;
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(44,38,28,0.18), 0 2px 8px rgba(44,38,28,0.10);
	padding: 0;
	margin-bottom: 8px;
	transition: box-shadow 0.3s, transform 0.3s;
	position: relative;
	overflow: hidden;
	margin-top: 10px;
}
.about-photo-frame img {
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    display: block;
    width: 100%;
    height: auto;
}
.about-photo-frame:hover {
	box-shadow: 0 18px 55px rgba(44,38,28,0.28), 0 4px 16px rgba(44,38,28,0.14);
}
.about-photo-frame:hover img {
    transform: scale(1.04);
}
.about-photo-frame::after {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	border-radius: 12px;
	border: 7px solid #fff;
	pointer-events: none;
	z-index: 2;
	box-sizing: border-box;
}

.about-photo-frame:hover {
	box-shadow: 0 18px 55px rgba(44,38,28,0.28), 0 4px 16px rgba(44,38,28,0.14);

}

/* About photo decorative elements */
.about-photo-decor {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.about-decor-blush {
	position: absolute;
	width: 250px;
	height: 280px;
	background: rgba(247, 207, 203, 0.2);
	border: 1px solid var(--blush);
	opacity: 1;
	border-radius: 12px;
	top: -30px;
	left: -50px;
	z-index: 0;
	transform: rotate(-6deg);
	box-shadow: 0 8px 32px rgba(247,207,203,0.15);
}
.about-decor-gold {
	position: absolute;
	width: 250px;
	height: 250px;
	border: 1px solid var(--gold);
	border-radius: 50%;
	top: 460px;
  left: -80px;
	z-index: 0;
	background: transparent;
	transform: rotate(6deg);
	opacity: 0.15;
  z-index: 1000;
}

#about {
	background: linear-gradient(to bottom, var(--cream-soft) 0%, var(--cream) 120%);
	padding: 7rem 0 3rem;
}

.about-accolades {
    width: 100%;
    margin-top: 0rem;
}

#about p {
  line-height: 1.75;
	letter-spacing: 0.05em;
}

.about-accolades-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.about-accolades-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,164,93,0.35), transparent);
}

.about-accolades-gem {
    color: var(--gold);
    font-size: 0.55rem;
    opacity: 0.6;
    flex-shrink: 0;
}

.about-accolades-kicker {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.about-accolades-shows {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.about-accolades-shows span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 500;
    color: var(--ink);
    background: var(--cream-2);
    border: 1px solid rgba(201, 164, 93, 0.2);
    border-radius: 3px;
    padding: 3px 10px;
    white-space: nowrap;
    transition: border-color 0.2s, background 0.2s;
    cursor: default;
}

.about-accolades-shows span:hover {
    background: var(--sage-soft);
    border-color: var(--sage);
}

.about-accolades-clients {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--ink-mid);
    line-height: 1.85;
}

.about-accolades-clients em {
    font-style: italic;
    color: var(--sage-deep);
    font-weight: 500;
}



/* CTA SECTION STYLES */
#cta-order {
	position: relative;
	overflow: hidden;
	padding: clamp(4.5rem, 7vw, 7rem) 1.5rem;
	text-align: center;
	background: url('../img/pexelspink.jpg') center/cover no-repeat fixed;
}

.cta-parallax-bg {
    display: none;
}

.cta-parallax-overlay {
	position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  width:100%;
  height:100%;
  backdrop-filter: blur(1px);
  background: linear-gradient( to bottom, rgba(46, 42, 35, 0.28) 0%, rgba(46, 42, 35, 0.18) 100% );
}

.cta-content {
	position: relative;
	z-index: 2;
	max-width: 680px;
	margin: 0 auto;
}

.cta-content .display-heading {
	color: var(--ink);
	font-size: 2rem;
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 500;
	letter-spacing: 0.6px;
	line-height: 1.1;
	text-transform: none;
}

@media (min-width: 640px) {
	.cta-content .display-heading {
		font-size: 2.25rem;
	}
}
@media (min-width: 768px) {
	.cta-content .display-heading {
		font-size: 2.75rem;
	}
}
@media (min-width: 1024px) {
	.cta-content .display-heading {
		font-size: 3.25rem;
	}
}

.cta-content .display-heading em {
	color: var(--sage-deep);
}

.cta-sub-text {
	font-size: .97rem;
	font-weight: 300;
	line-height: 1.9;
	color: var(--ink-mid);
	max-width: 520px;
	margin: 0 auto 2.5rem;
}




/* ═══════════════════════════════════════
   TASTING BOX
═══════════════════════════════════════ */

#tasting-box {
	background: linear-gradient(to bottom, var(--cream-soft) 0%, var(--cream) 120%);
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(198, 163, 91, .14);
	padding: 8rem 0 7rem;
}
@media (max-width: 640px) {
  #tasting-box { padding: 5rem 0 4rem; }
}

#tasting-box p {
	line-height: 1.75;
	letter-spacing: 0.05em;
}

.tb-bg-accent {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 1px solid rgba(198, 163, 91, .1);
    top: -160px;
    right: -160px;
    pointer-events: none;
}

.tb-bg-accent::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(198, 163, 91, .25);
    top: 90px;
    left: 90px;
}

.tb-bg-accent-2 {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(198, 163, 91, 0.13);
    bottom: -120px;
    left: -120px;
    pointer-events: none;
    z-index: 0;
}

.tb-bg-accent-3 {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(198, 163, 91, 0.16);
    top: 50%;
    right: 10%;
    pointer-events: none;
    z-index: 0;
}

.tb-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 2.5rem 3.5rem;
	align-items: start;
	max-width: 100%;
	margin: 0 auto;
}

@media (max-width: 600px) {
  .tb-bg-accent-2 {
    display: none !important;
  }
}

.tb-left {
	grid-column: 1 / span 6;
}
.tb-right {
	grid-column: 7 / span 6;
}

@media (max-width: 900px) {
	.tb-grid {
		grid-template-columns: repeat(6, 1fr);
	}
	.tb-left {
		grid-column: 1 / span 6;
	}
	.tb-right {
		grid-column: 1 / span 6;
	}
}

@media (max-width: 600px) {
	.tb-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem 0;
	}
	.tb-left, .tb-right {
		grid-column: 1 / -1;
	}
}

/* Left col */

/* Faux-feature-list styling for tb-details */
.tb-details {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.tb-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .9rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(198, 163, 91, .15);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(20, 18, 14, .04);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.tb-detail:hover {
  border-color: rgba(198, 163, 91, .35);
  box-shadow: 0 8px 28px rgba(20, 18, 14, .08);
  transform: translateX(4px);
}

.tb-detail-icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50%;
  background: rgba(201, 164, 93, .1);
  border: 1px solid rgba(201, 164, 93, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .85rem;
  flex-shrink: 0;
  box-shadow: none;
  text-align: center;
  transition: background 0.2s;
  line-height: 1;
  padding: 12px !important;
}

.tb-detail-label {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
  display: block;
}

.tb-detail-value {
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-mid);
}

/* Right card */
.tb-card {
	background: var(--white);
	border: 1px solid rgba(198, 163, 91, .18);
	border-radius: 12px;
	padding: clamp(2.5rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4.5rem);
	box-shadow: 0 24px 80px 0 rgba(17, 24, 39, 0.1), 0 2px 8px 0 rgba(198, 163, 91, 0.08);
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.tb-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold-hi), var(--gold), var(--gold-hi), transparent);
}

.tb-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}

.tb-card-icon {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(198, 163, 91, .32);
    border-radius: .3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .95rem;
    flex-shrink: 0;
    background: rgba(251, 247, 240, .8);
}

.tb-card-kicker {
    font-size: .6rem;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--body);
    margin-bottom: 2px;
}

.tb-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1;
    margin: 0;
}

.tb-card-price {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.tb-price-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    letter-spacing: .02em;
	background: linear-gradient(90deg, var(--gold-hi) 0%, var(--gold) 40%, var(--gold-hi) 70%, var(--gold-deep) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.tb-price-note {
    font-size: .62rem;
    font-weight: 300;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--body);
    margin-top: 2px;
}

.tb-card-sub {
    font-size: .88rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--body);
    margin-bottom: 1.5rem;
}

/* Flavor list */
.tb-flavors {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem 1rem;
    margin-bottom: 1.5rem;
}

.tb-flavor {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.tb-flavor-dot {
    width: 5px !important;
    height: 5px !important;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    opacity: .7;
}

.tb-flavor-name {
    font-size: .84rem;
    font-weight: 400;
    color: var(--ink-mid);
    line-height: 1.6;
}

/* Includes */
.tb-includes {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    padding: 1.1rem 1.2rem;
    background: rgba(251, 247, 240, .5);
    border: 1px solid rgba(198, 163, 91, .12);
    border-radius: .3rem;
    margin-bottom: 1.25rem;
}

.tb-include {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .84rem;
    font-weight: 300;
    color: var(--ink-mid);
}

.tb-check {
    color: var(--sage);
    font-size: .65rem;
    flex-shrink: 0;
    width: 14px;
}

/* Credit note */
.tb-card-note {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .9rem 1rem;
    background: rgba(198, 163, 91, .06);
    border: 1px solid rgba(198, 163, 91, .18);
    border-radius: .3rem;
}

.tb-card-note p {
    font-size: .8rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--ink-mid);
    margin: 0;
}


.tb-detail {
    position: relative;
    overflow: hidden;
    transition: background 0.35s cubic-bezier(.4,0,.2,1);
    border-radius: 12px;
    z-index: 1;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}

.tb-detail:hover {
  border-color: rgba(198, 163, 91, .35);
  box-shadow: 0 8px 28px rgba(20, 18, 14, .08);
  transform: translateX(4px);
}

.tb-detail::before {
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.5s cubic-bezier(.4,0,.2,1);
	z-index: 0;
	opacity: 0.75;
	pointer-events: none;
	border-radius: 12px;
}


.tb-detail::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0; height: 1px;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.5s cubic-bezier(.4,0,.2,1);
	z-index: 2;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	pointer-events: none;
}
.tb-detail:hover::after {
	transform: scaleX(1);
}
.tb-detail > * {
	position: relative;
	z-index: 1;
}

/* Parallax Cakery Section */
.cakery-parallax {
  width: 100%;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  height: 590px;
  background-image: url('../img/cakery.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.cakery-parallax::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: inherit;
	background-size: inherit;
	background-position: inherit;
	background-repeat: inherit;
	background-attachment: inherit;
	filter: blur(.5px);
	pointer-events: none;
}


.cakery-parallax::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient( to top, rgba(19, 17, 8, 0.2) 0%, rgba(27, 25, 16, 0.05) 100% );
}

.cakery-parallax > .content-wrapper {
	position: relative;
	z-index: 2;
}

@media (max-width: 900px) {
  #cakery-parallax {
    background-attachment: scroll;
    background-position: center 0;
  }
}


.cakery-kicker {
  display: block;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.cakery-heading {
	font-size: 2rem;
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 500;
	letter-spacing: 0.6px;
	color: #fff;
	line-height: 1.1;
	text-transform: none;
	text-align: center;
	margin: 0 auto 0.5em auto;
	max-width: 950px;
}
.cakery-heading em {
  font-style: italic;
  color: #fff;
}
@media (min-width: 640px) {
  .cakery-heading {
    font-size: 2.25rem;
  }
}
@media (min-width: 768px) {
  .cakery-heading {
    font-size: 2.75rem;
  }
}
@media (min-width: 1024px) {
  .cakery-heading {
    font-size: 3.25rem;
  }
}



/* Back to Top Button Styles */
.back-to-top-btn {
	box-sizing: border-box;
	padding: 0;
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 9999;
	background: var(--sage);
	color: #fff;
	border: none;
	border-radius: 6px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	box-shadow: 0 4px 16px rgba(44,38,28,0.13);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		background 0.2s,
		box-shadow 0.2s,
		opacity 0.4s cubic-bezier(.4,0,.2,1),
		visibility 0.4s cubic-bezier(.4,0,.2,1);
}

.back-to-top-btn.visible {
	opacity: 0.92;
	visibility: visible;
	pointer-events: auto;
	transition:
		background 0.2s,
		box-shadow 0.2s,
		opacity 0.4s cubic-bezier(.4,0,.2,1),
		visibility 0.4s cubic-bezier(.4,0,.2,1);
}

.back-to-top-btn:not(.visible) {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		background 0.2s,
		box-shadow 0.2s,
		opacity 0.18s cubic-bezier(.4,0,.2,1),
		visibility 0.18s cubic-bezier(.4,0,.2,1);
}

.back-to-top-btn i {
	font-size: 1rem;
	line-height: 1;
	width: 1em;
	height: 1em;
	display: block;
}
.back-to-top-btn:hover {
	background: var(--gold-hi);
	color: var(--ink);
	box-shadow: 0 8px 24px rgba(44,38,28,0.18);
	opacity: 1;
}



#credibility-bar {
    background: linear-gradient(to left, var(--cream-2) 0%, var(--cream-soft) 100%) !important;
    padding: 32px 0 32px 0;
}


.cred-bar-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    height: 90px;
    width: 100%;
    padding: 0 1rem;
}

@media (max-width: 900px) {
  .cred-bar-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2.2rem 4vw;
    height: auto;
    justify-items: center;
    align-items: center;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
  .cred-logo {
    max-width: 160px;
    min-width: 90px;
    width: 90%;
    height: 56px !important;
    object-fit: contain;
    margin: 1.1rem 0 1.1rem 0;
  }
  .cred-bar-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .cred-bar-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2.5rem 2vw;
    padding: 1.5rem 0.2rem 2rem 0.2rem;
    margin-top: 0.7rem;
    margin-bottom: 0.7rem;
  }
  .cred-logo {
    max-width: 95vw;
    min-width: 60px;
    width: 100%;
    height: 44px !important;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
  }
}



.cred-logo {
    filter: grayscale(100%);
    transition: filter 0.3s, transform 0.3s;
    flex: 1 1 0;
    object-fit: contain;
    max-width: 180px;
    height: 70px;
    margin: 0 0.5vw;
}
.cred-logo:hover {
    filter: none;
    transform: scale(1.12);
}
.cred-bar-divider {
    width: 1.5px;
    height: 60px;
    background: rgba(200,160,74,0.18);
    border-radius: 2px;
    margin: 0 0.2vw;
}



#steps-gradient-bar {
	min-height: 600px;
	background: linear-gradient(to left, var(--cream) 0%, var(--cream-soft) 100%) !important;
	padding: 6rem 0;
	border-top: 1px solid rgba(198, 163, 91, .14);
}

/* Process Steps Grid Styles */
.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	position: relative;
}
.process-steps::before {
	content: '';
	position: absolute;
	top: 26px;
	left: 12%;
	right: 12%;
	height: 1px;
	background: linear-gradient(to right, var(--gold-hi), var(--gold), var(--gold-hi));
	opacity: .28;
}
@media (max-width: 900px) {
	.process-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 1rem;
	}
	.process-steps::before {
		display: none;
	}
}
@media (max-width: 540px) {
	.process-steps {
		grid-template-columns: 1fr;
	}
}
.process-step {
	text-align: center;
	padding: 0 1rem;
}

.step-num {
	width: 56px;
	height: 56px;
	border: 1px solid var(--gold-hi);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--gold);
	background: rgba(251, 247, 240, .9);
	position: relative;
	z-index: 1;
}
.step-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.45rem;
	color: var(--ink);
	margin-bottom: .6rem;
}
.step-desc {
	font-size: .9rem;
	font-weight: 300;
	line-height: 1.85;
	color: var(--body);
}



/* ═══════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════ */

#pricing {
  background: linear-gradient(to bottom, var(--cream-soft) 0%, var(--cream) 100%);
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(198, 163, 91, .12);
}
@media (max-width: 640px) {
  #pricing { padding: 4rem 0 5rem; }
}

.pr-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.pr-bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(198, 163, 91, .1);
  pointer-events: none;
}

.pr-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pr-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.pr-kicker::before,
.pr-kicker::after {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  border-radius: 2px;
}
.pr-kicker::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.pr-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: .04em;
}
.pr-title em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 300;
}

.pr-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1.25rem auto 1.5rem;
  max-width: 220px;
}
.pr-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,164,93,.4), transparent);
}
.pr-divider-gem {
  color: var(--gold);
  font-size: .5rem;
  opacity: .6;
}

.pr-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--body);
  max-width: 850px;
  margin: 8px auto;
}

/* CARD GRID */
.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .pr-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto 2.5rem;
  }
}

/* CARDS */
.pr-card {
  background: var(--white);
  border: 1px solid rgba(198, 163, 91, .18);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .4s cubic-bezier(.23,1,.32,1),
              box-shadow .4s cubic-bezier(.23,1,.32,1);
  box-shadow: var(--sh-card);
  scale: 0.98;
  margin-bottom: 10px;
}
.pr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(20,18,14,.12);
}
.pr-card--featured {
  border: 1.5px solid rgba(201,164,93,.45);
  scale: 1.05;
  /* background: linear-gradient(160deg, #fffdf9 0%, var(--cream-soft) 100%); */
}
.pr-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1%;
  background: linear-gradient(to right, transparent, var(--gold-hi), var(--gold), var(--gold-hi), transparent);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.pr-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pr-tier {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: .6rem;
}

.pr-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .5rem;
}

.pr-tagline {
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 1.6rem;
  min-height: 2.8rem;
}

.pr-price-area { margin-bottom: 0.25rem; }

.pr-price-label {
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: .2rem;
}

.pr-price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 6vw, 3rem);
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(90deg, var(--gold-hi) 0%, var(--gold) 40%, var(--gold-hi) 70%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pr-price-num--sm { font-size: 2.2rem; }

.pr-price-range {
  font-size: .72rem;
  color: var(--body);
  font-weight: 300;
  margin-top: .15rem;
}

.pr-divider-thin {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,164,93,.25), transparent);
  margin: 0.75rem 0;
}

.pr-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pr-feature {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .82rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.55;
}

.pr-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(143, 175, 154, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--sage);
  font-size: .5rem;
}

/* BOTTOM NOTE */
.pr-note {
  background: rgba(198, 163, 91, .06);
  border: 1px solid rgba(198, 163, 91, .18);
  border-radius: .3rem;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .pr-note { width: 100%; }
}
.pr-note p {
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-mid);
  margin: 0;
}


#clients {
    background: linear-gradient(to bottom, var(--cream-soft) 0%, var(--cream) 100%) !important;
    border-top: 1px solid rgba(198, 163, 91, .18);
}


      /* ═══════════════════════════════════════
       FAQS
    ═══════════════════════════════════════ */
        #faqs {
            background: var(--cream);
            position: relative;
            overflow: hidden;
            padding: 9rem 0 7rem;
        }
        @media (max-width: 640px) {
          #faqs { padding: 5rem 0 4rem; }
        }

        #faqs::before {
            content: 'FAQ';
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 22vw;
            font-weight: 400;
            font-style: italic;
            color: rgba(198, 163, 91, .065);
            line-height: 1;
            pointer-events: none;
            user-select: none;
        }

        .faqs-layout {
            display: grid;
            grid-template-columns: 35% 1fr;
            gap: 4rem;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 900px) {
            .faqs-layout {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }

        .faqs-stats {
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
            margin-top: 2rem;
            padding: 1.5rem;
            background: var(--white);
            border: 1px solid rgba(198, 163, 91, .14);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(17, 24, 39, .05);
            position: relative;
            overflow: hidden;
        }

        .faqs-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--gold-hi), var(--gold), var(--gold-hi), transparent);
        }

        .faqs-stat {
            display: flex;
            align-items: center;
            gap: .85rem;
        }

        .faqs-stat-num {
            font-family: 'Cormorant Garamond', serif;
            color: var(--gold);
            line-height: 1.05;
            min-width: 2.8rem;
	        font-size: 1.6rem;
	        font-weight: 500;
	        text-align: center;
	        letter-spacing: 0.08em;
        }

        .faqs-stat-label {
            font-size: 0.8rem;
	        font-weight: 400;
	        letter-spacing: 0.1em;
	        color: var(--body);
	        line-height: 1.4;
	        text-align: center;
        }

        .faqs-stat-div {
            height: 1px;
            background: rgba(198, 163, 91, .13);
        }

        .faq-accordion {
            display: flex;
            flex-direction: column;
        }

        .faq-item {
            border-bottom: 1px solid rgba(198, 163, 91, .15);
            position: relative;
        }

        .faq-item:first-child {
            border-top: 1px solid rgba(198, 163, 91, .15);
        }

        .faq-item::before {
            content: '';
            position: absolute;
            left: -1.2rem;
            top: 50%;
            transform: translateY(-50%) scaleY(0);
            width: 1px;
            height: 60%;
            background: linear-gradient(to bottom, transparent, var(--gold-hi), var(--gold), var(--gold-hi), transparent);
            transition: transform .35s cubic-bezier(.23, 1, .32, 1);
        }

        .faq-item.open::before {
            transform: translateY(-50%) scaleY(1);
        }

        .faq-trigger {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.25rem;
            padding: 1.4rem 0;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
        }

        .faq-question {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.05rem, 1.5vw, 1.3rem);
            color: var(--body);
            line-height: 1.2;
            flex: 1;
            text-transform: none !important;
            padding: 0 20px;
        }

        .faq-trigger:hover .faq-question {
            color: var(--gold);
        }

        .faq-icon {
            width: 34px;
            height: 34px;
            border: 1px solid rgba(198, 163, 91, .28);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: .68rem;
            background: rgba(251, 247, 240, .7);
            flex-shrink: 0;
            transition: background .3s, border-color .3s, transform .35s cubic-bezier(.23, 1, .32, 1);
            margin-right: 20px;
        }

        .faq-item.open .faq-icon {
            background: rgba(198, 163, 91, .1);
            border-color: rgba(198, 163, 91, .55);
            transform: rotate(45deg);
        }

        .faq-answer {
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transition: max-height .45s cubic-bezier(.23, 1, .32, 1), opacity .35s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 480px;
            opacity: 1;
        }

        .faq-answer-inner {
            background: var(--white);
            border: 1px solid rgba(198, 163, 91, .13);
            border-radius: 5px;
            box-shadow: 0 8px 24px rgba(17, 24, 39, .05);
            padding: .9rem 1.1rem;
            margin: 0 0 1.1rem;
            font-size: .92rem;
            font-weight: 300;
            line-height: 1.88;
            color: var(--body);
        }

    .faq-item {
        border-radius: 12px;
    }

    .faq-item button:hover {
        background-color: transparent;
        box-shadow: 0 4px 20px rgba(17, 24, 39, .05);
    }


    /* Testimonials Carousel Styles */
.tm-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}
.tm-header .eyebrow {
  justify-content: center;
}
.tm-sub {
  max-width: 680px;
  margin: -.5rem auto 0;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--body);
  text-align: center;
}
.tm-track-wrap {
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  /* Fade effect on both sides */
}

@media (max-width: 660px) {
  .tm-track-wrap {
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}

.tm-stage {
  position: relative;

}
.tm-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
  gap: 32px;
  position: relative;
  top: -18px;
  margin-bottom: 2.2rem;
}
.tm-slider-controls button:focus {
  outline: none;
}
.tm-slider-controls button {
  outline: none;
}

.tm-track {
  display: flex;
  gap: 20px;
  padding: 14px 3px 28px;
  transition: transform .7s cubic-bezier(.23, 1, .32, 1);
  will-change: transform;
}
.tm-card {
  flex: 0 0 calc(33.333% - 15px);
  background: var(--white);
  border: 1px solid rgba(198, 163, 91, .12);
  border-radius: 2px;
  padding: 2.5rem 2.1rem 1.7rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform .5s cubic-bezier(.23, 1, .32, 1), box-shadow .5s cubic-bezier(.23, 1, .32, 1), border-color .4s ease;
  isolation: isolate;
  isolation: isolate;
}
@media (max-width: 1000px) {
  .tm-card {
    flex: 0 0 calc(50% - 11px);
  }
}
@media (max-width: 660px) {
  .tm-card {
    flex: 0 0 100%;
    padding: 2rem 1.5rem 1.5rem;
  }
}
.tm-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-hi), var(--gold), var(--gold-hi));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.23, 1, .32, 1);
}
.tm-card:hover,
.tm-card.is-active {
  transform: translateY(-10px);
  box-shadow: 0 26px 60px rgba(17, 24, 39, .1);
  border-color: rgba(198, 163, 91, .28);
}
.tm-card:hover::after,
.tm-card.is-active::after {
  transform: scaleX(1);
}
.tm-deco-q {
  position: absolute;
  top: 14px;
  left: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: .08;
  pointer-events: none;
  user-select: none;
  transition: opacity .4s ease;
}
.tm-card:hover .tm-deco-q,
.tm-card.is-active .tm-deco-q {
  opacity: .16;
}
.tm-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.tm-star {
  color: var(--gold);
  font-size: .74rem;
}
@keyframes starPop {
  0%,100% { transform: scale(1) }
  45% { transform: scale(1.4) }
}
.tm-card:hover .tm-star { animation: starPop .35s ease both; }
.tm-card:hover .tm-star:nth-child(1) { animation-delay: .00s }
.tm-card:hover .tm-star:nth-child(2) { animation-delay: .04s }
.tm-card:hover .tm-star:nth-child(3) { animation-delay: .08s }
.tm-card:hover .tm-star:nth-child(4) { animation-delay: .12s }
.tm-card:hover .tm-star:nth-child(5) { animation-delay: .16s }
.tm-quote {
  font-size: .93rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-mid);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.tm-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(198, 163, 91, .32), transparent);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
  transform: scaleX(.5);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.23, 1, .32, 1);
}
.tm-card:hover .tm-divider,
.tm-card.is-active .tm-divider {
  transform: scaleX(1);
}
.tm-author {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.tm-avatar {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(198, 163, 91, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tm-initials {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--gold);
}
.tm-name {
  font-size: .86rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
  text-transform: capitalize;
}
.tm-role {
  font-size: .64rem;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9a9490;
  margin: 0;
}

/* ═══════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════ */

#contact {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 7rem;
  background-color: #2e2a23;
  isolation: isolate;
  
}

.ct-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-image: url('../img/contact.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.6;
  
}

.ct-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient( 135deg, rgba(46, 42, 35, 0.9) 0%, rgba(46, 42, 35, 0.6) 100% );
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.ct-noise {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.ct-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.ct-particle {
  position: absolute;
  bottom: -4px;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: ct-drift linear infinite;
}

@keyframes ct-drift {
  0% {
    transform: translateY(0) translateX(0) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-110vh) translateX(var(--dx)) scale(var(--sc));
    opacity: 0;
  }
}

.ct-content-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 4;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1.15fr;
  gap: 0 4.5rem;
  align-items: center;
}

.ct-divider-line {
  width: 1px;
  align-self: stretch;
  min-height: 520px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 164, 93, 0.25) 20%,
    rgba(201, 164, 93, 0.25) 80%,
    transparent
  );
}

/* ── LEFT COLUMN ── */

.ct-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.02;
  color: #fff;
  letter-spacing: .02em;
  margin-bottom: 1.6rem;
}

.ct-heading em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(90deg, var(--gold-hi) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-rule {
  width: 48px;
  height: 1px;
  margin-bottom: 1.6rem;
  background: linear-gradient(to right, var(--gold), transparent);
}

.ct-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin-bottom: 1.6rem;
}

.ct-channels {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: .5rem;
}

/* ── CHANNEL CARDS — more visible ── */
.ct-ch {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1.1rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 164, 93, 0.22);
  background: rgba(255, 255, 255, 0.12);
  transition: background .3s, border-color .3s, transform .3s;
}

.ct-ch:hover {
  background: rgba(201, 164, 93, 0.12);
  border-color: rgba(201, 164, 93, 0.40);
  transform: translateX(5px);
}

.ct-ch-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(201, 164, 93, 0.15);
  border: 1px solid rgba(201, 164, 93, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .82rem;
}

.ct-ch-label {
  font-size: .56rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(201, 164, 93, .75);
  margin-bottom: 2px;
}

.ct-ch-val {
  font-size: .86rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .82);
}

/* ── RIGHT COLUMN / FORM ── */

.ct-form-wrap {
  position: relative;
  padding-left: 1rem;
}

.ct-form-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(201, 164, 93, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ── FORM CARD — more visible ── */
.ct-form-card {
  position: relative;
  z-index: 1;
  background: rgba(20, 18, 14, 0.5);
  border: 1px solid rgba(201, 164, 93, 0.28);
  border-radius: 12px;
  padding: 3rem 3.5rem;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(201, 164, 93, 0.12);
}

.ct-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-hi),
    var(--gold),
    var(--gold-hi),
    transparent
  );
}

.ct-form-eyebrow {
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(201, 164, 93, .7);
  margin-bottom: .35rem;
}

.ct-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.8rem;
}

.ct-form-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-hi);
}

.ct-gem-strip {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.6rem;
}

.ct-gem-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 164, 93, .25), transparent);
}

.ct-gem-line--right {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 93, .25));
}

.ct-gem {
  color: var(--gold);
  font-size: .5rem;
  opacity: .5;
}

.ct-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: .9rem;
}

.ct-field label {
  font-size: .56rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(201, 164, 93, .65);
}

.ct-field input,
.ct-field select,
.ct-field textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: .87rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .90);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 164, 93, .25);
  border-radius: 4px;
  padding: .78rem 1rem;
  outline: none;
  width: 100%;
  transition: border-color .25s, background .25s, box-shadow .25s;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: rgba(255, 255, 255, .25);
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: rgba(143, 175, 154, .7);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 0 0 3px rgba(143, 175, 154, .10);
}

.ct-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C9A45D' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.4rem;
  background-color: rgba(255, 255, 255, 0.07);
}

.ct-field select option {
  background: #2a2520;
  color: rgba(255, 255, 255, .85);
}

.ct-field textarea {
  resize: vertical;
  min-height: 110px;
}

.ct-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 1rem;
}

.ct-privacy-line {
  font-size: .7rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, .32);
  flex: 1;
}

.ct-submit-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), box-shadow .35s;
  box-shadow: 0 8px 28px rgba(95, 127, 107, .28);
}

.ct-submit-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, .06) 0%,
    rgba(255, 255, 255, .22) 50%,
    rgba(255, 255, 255, .06) 100%
  );
  transform: skewX(-18deg);
  transition: left .7s cubic-bezier(.4, 0, .2, 1);
}

.ct-submit-btn:hover::after {
  left: 110%;
}

.ct-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(95, 127, 107, .38);
}

/* ── RESPONSIVE ── */

@media (max-width: 960px) {
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem 0;
  }
  .ct-divider-line {
    display: none;
  }
  .ct-form-wrap {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  #contact {
    padding: 6rem 0 5rem;
  }
  .ct-field-row {
    grid-template-columns: 1fr;
  }
  .ct-form-card {
    padding: 2rem 1.5rem;
  }
  .ct-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .ct-submit-btn {
    width: 100%;
    justify-content: center;
  }
}



/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */

#footer {
  background: linear-gradient(
  to bottom,
  #1B1910 0%,
  #16140C 50%,
  #131108 100%
);
  position: relative;
  overflow: hidden;
}

.ft-top-rule {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 164, 93, 0.35) 30%,
    rgba(201, 164, 93, 0.35) 70%,
    transparent
  );
}

.ft-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ft-bg-orb--left {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -150px;
  background: radial-gradient(ellipse, rgba(201, 164, 93, 0.04) 0%, transparent 70%);
}

.ft-bg-orb--right {
  width: 360px;
  height: 360px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(ellipse, rgba(143, 175, 154, 0.05) 0%, transparent 70%);
}

/* ── MAIN BODY GRID ── */

.ft-body {
  max-width: 1320px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1.6fr 1px 1fr 1fr 1fr;
  gap: 0 3.5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.ft-col-div {
  width: 1px;
  align-self: stretch;
  min-height: 280px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 164, 93, 0.15) 25%,
    rgba(201, 164, 93, 0.15) 75%,
    transparent
  );
}

/* ── BRAND COLUMN ── */

.ft-brand-col {
  padding-right: 1rem;
}

.ft-signature {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: var(--gold-hi);
  line-height: 1;
  margin-bottom: .5rem;
  text-shadow: 0 2px 16px rgba(201, 164, 93, 0.18);
}

.ft-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: .06em;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.ft-socials {
  display: flex;
  gap: .6rem;
  margin-bottom: 2rem;
}

.ft-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 93, 0.2);
  background: rgba(201, 164, 93, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 164, 93, 0.65);
  font-size: .78rem;
  text-decoration: none;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}

.ft-social:hover {
  background: rgba(201, 164, 93, 0.15);
  border-color: rgba(201, 164, 93, 0.5);
  color: var(--gold);
  transform: translateY(-3px);
}

.ft-cert {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(201, 164, 93, 0.18);
  background: rgba(201, 164, 93, 0.05);
}

.ft-cert-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.ft-cert-text {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

/* ── COLUMN HEADINGS ── */

.ft-col-heading {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(201, 164, 93, .6);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft-col-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 164, 93, 0.2), transparent);
}

/* ── NAV LINKS ── */

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.ft-links li a {
  font-size: .84rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.ft-links li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  transition: width .25s cubic-bezier(.4, 0, .2, 1);
  flex-shrink: 0;
}

.ft-links li a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.ft-links li a:hover::before {
  width: 12px;
}


/* ── SPECIALTIES ── */

.ft-features {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.ft-feature {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .42);
}

.ft-feature-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: .6;
}

/* ── CONTACT INFO ── */

.ft-info-rows {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.ft-info-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.ft-info-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(201, 164, 93, 0.08);
  border: 1px solid rgba(201, 164, 93, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 164, 93, .65);
  font-size: .65rem;
}

.ft-info-label {
  font-size: .56rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(201, 164, 93, .5);
  margin-bottom: 2px;
}

.ft-info-val {
  font-size: .82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .52);
  line-height: 1.55;
}

/* ── BOTTOM BAR ── */

.ft-bottom {
  border-top: 1px solid rgba(201, 164, 93, 0.1);
  position: relative;
  z-index: 2;
}

.ft-bottom-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.ft-copy {
  font-size: .7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: .06em;
}

.ft-copy span {
  color: rgba(201, 164, 93, 0.45);
}

.ft-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.ft-bottom-links a {
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: color .2s;
}

.ft-bottom-links a:hover {
  color: rgba(201, 164, 93, 0.65);
}

.ft-bottom-gem {
  color: rgba(201, 164, 93, 0.25);
  font-size: .4rem;
}

/* ── FOOTER RESPONSIVE ── */

/* Tablet landscape: drop to 2-col, divider spans both rows */
@media (max-width: 1100px) {
  .ft-body {
    grid-template-columns: 1.2fr 1px 1fr 1fr;
    gap: 0 2.5rem;
  }
  .ft-col-div {
    grid-row: 1 / 3;
  }
  .ft-brand-col {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .ft-nav-col {
    grid-column: 3;
    grid-row: 1;
  }
  .ft-spec-col {
    grid-column: 4;
    grid-row: 1;
  }
  .ft-contact-col {
    grid-column: 3 / 5;
    grid-row: 2;
    padding-top: 2.5rem;
  }
}

/* Tablet portrait: 2 equal columns, no divider */
@media (max-width: 820px) {
  .ft-body {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    padding: 4rem 1.5rem 3rem;
  }
  .ft-col-div { display: none; }
  .ft-brand-col  { grid-column: 1 / -1; grid-row: auto; }
  .ft-nav-col    { grid-column: auto;   grid-row: auto; }
  .ft-spec-col   { grid-column: auto;   grid-row: auto; }
  .ft-contact-col { grid-column: 1 / -1; grid-row: auto; padding-top: 0; }
}

/* Mobile: single column */
@media (max-width: 560px) {
  .ft-body {
    grid-template-columns: 1fr;
    gap: 2.5rem 0;
    padding: 3.5rem 1.25rem 3rem;
  }
  .ft-brand-col,
  .ft-nav-col,
  .ft-spec-col,
  .ft-contact-col { grid-column: auto; grid-row: auto; padding-top: 0; }
  .ft-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.25rem;
  }
  .ft-bottom-links {
    flex-wrap: wrap;
    gap: .8rem 1.2rem;
  }
}


.gradient-top-border {
  margin-top: -15px;
}


@media (max-width: 640px) {
  .gradient-top-border {
    margin-top: -84px !important;
  }

  .off-intro-text {
    margin-top: 20px !important;
  }

  .off-strip-cta {
    align-items: center !important;
    text-align: center !important;
  }

  .off-strip-cta {
    align-items: center !important;
    text-align: center !important;
  }

  #faqs::before {
    display: none;
  }

  .hero-box-bg {
    padding: 3rem 2rem !important;
  }


  }



  /* === SCROLL REVEAL SYSTEM === */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(.23,1,.32,1),
              transform 0.8s cubic-bezier(.23,1,.32,1);
  will-change: opacity, transform;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger options */
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* Slightly different variants (optional but 🔥) */
.reveal-left {
  transform: translateY(30px) translateX(-20px);
}
.reveal-right {
  transform: translateY(30px) translateX(20px);
}
.reveal.show.reveal-left,
.reveal.show.reveal-right {
  transform: translateY(0) translateX(0);
}


/* Two-column flavor list for Signature Flavors */
.flavor-list--columns {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  column-gap: 2.2rem;
  padding-left: 0;
  margin-bottom: 0.8rem;
}
.flavor-list--columns .flavor-item {
  break-inside: avoid;
}