/* ============================================================
   Rasoi Darbar — site stylesheet
   Palette: ink teal (brand), ivory (malai), saffron (kesar),
   cardamom green. Type: Fraunces display / Karla body.
   ============================================================ */

:root {
	--ink: #0D1A1C;
	--ink-soft: #142A2E;
	--ink-line: rgba(248, 243, 233, 0.16);
	--ivory: #F8F3E9;
	--ivory-deep: #EFE6D4;
	--saffron: #DE9B3C;
	--saffron-deep: #B67B1F;
	--cardamom: #2E5245;
	--line: rgba(13, 26, 28, 0.14);
	--display: "Fraunces", Georgia, serif;
	--body: "Karla", -apple-system, sans-serif;
	--shell: 1160px;
	--radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}

body.rds-site {
	font-family: var(--body);
	font-size: 16.5px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--ivory);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.rds-shell { max-width: var(--shell); margin: 0 auto; padding: 0 24px; }
.rds-center { text-align: center; }
.rds-center .rds-rule { justify-content: center; }

/* ---------- shared type ---------- */
.rds-eyebrow {
	font-family: var(--body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--saffron);
	margin-bottom: 14px;
}
.rds-eyebrow-dark { color: var(--saffron-deep); }

.rds-h2 {
	font-family: var(--display);
	font-weight: 500;
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.12;
	letter-spacing: -0.01em;
	margin-bottom: 18px;
}
.rds-body { max-width: 56ch; color: rgba(13, 26, 28, 0.78); }

.rds-rule {
	display: flex; align-items: center; gap: 12px;
	margin: 0 0 18px; color: var(--saffron-deep);
}
.rds-rule i { display: block; width: 44px; height: 1px; background: currentColor; opacity: 0.55; }
.rds-rule b { font-size: 9px; line-height: 1; }

/* ---------- buttons ---------- */
.rds-btn {
	display: inline-flex; align-items: center; gap: 9px;
	font-family: var(--body); font-weight: 700; font-size: 14px;
	letter-spacing: 0.04em; text-decoration: none; cursor: pointer;
	padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.rds-btn:hover { transform: translateY(-2px); }
.rds-btn:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; }
.rds-btn-saffron { background: var(--saffron); color: var(--ink); box-shadow: 0 10px 24px -12px rgba(222, 155, 60, 0.9); }
.rds-btn-saffron:hover { background: #E9AC55; }
.rds-btn-ghost { border-color: currentColor; color: inherit; background: transparent; }
.rds-btn-ink { background: var(--ink); color: var(--ivory); }
.rds-btn-block { width: 100%; justify-content: center; }

/* ---------- header ---------- */
.rds-header {
	position: fixed; inset: 0 0 auto 0; z-index: 40;
	background: rgba(13, 26, 28, 0.86);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--ink-line);
	color: var(--ivory);
}
.rds-header-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.rds-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.rds-logo img { height: 44px; width: auto; }
.rds-logo-mark {
	display: grid; place-items: center;
	width: 40px; height: 40px; border-radius: 50%;
	border: 1px solid var(--saffron);
	color: var(--saffron); font-family: var(--display); font-size: 15px; font-weight: 600;
}
.rds-logo-text { font-family: var(--display); font-size: 20px; font-weight: 500; letter-spacing: 0.02em; }
.rds-nav { display: flex; gap: 26px; margin-left: auto; }
.rds-nav a {
	text-decoration: none; font-size: 14px; font-weight: 600;
	letter-spacing: 0.05em; color: rgba(248, 243, 233, 0.82);
	transition: color 0.15s ease;
}
.rds-nav a:hover { color: var(--saffron); }
.rds-header-cta { padding: 11px 20px; }
.rds-burger { display: none; }

/* ---------- hero ---------- */
.rds-hero {
	background:
		radial-gradient(900px 480px at 82% -10%, rgba(46, 82, 69, 0.55), transparent 65%),
		radial-gradient(700px 420px at -10% 110%, rgba(222, 155, 60, 0.14), transparent 60%),
		var(--ink);
	color: var(--ivory);
	padding: 168px 0 110px;
	position: relative;
	overflow: hidden;
}
.rds-hero-bg {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	pointer-events: none;
}
.rds-hero .rds-shell { position: relative; z-index: 1; }
.rds-hero-grid {
	display: grid; grid-template-columns: 1.15fr 0.85fr;
	gap: 56px; align-items: center;
}
.rds-hero-title {
	font-family: var(--display); font-weight: 600;
	font-size: clamp(56px, 8.5vw, 104px);
	line-height: 0.98; letter-spacing: -0.02em;
	display: flex; flex-direction: column; margin: 6px 0 14px;
}
.rds-hero-title-b {
	color: var(--saffron); font-style: italic; font-weight: 400;
	margin-left: 0.9em;
}
.rds-hero-sub {
	font-family: var(--display); font-style: italic;
	font-size: clamp(19px, 2.2vw, 24px); color: rgba(248, 243, 233, 0.92);
	margin-bottom: 16px;
}
.rds-hero-text { max-width: 54ch; color: rgba(248, 243, 233, 0.74); margin-bottom: 30px; }
.rds-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.rds-hero-visual { position: relative; display: grid; place-items: center; }
.rds-ring {
	width: min(380px, 78vw); aspect-ratio: 1;
	border-radius: 50%; padding: 14px;
	border: 1px solid rgba(222, 155, 60, 0.55);
	position: relative;
}
.rds-ring::before {
	content: ""; position: absolute; inset: -16px;
	border-radius: 50%; border: 1px dashed rgba(222, 155, 60, 0.3);
}
.rds-ring img, .rds-ring-placeholder {
	width: 100%; height: 100%; border-radius: 50%;
	object-fit: cover;
}
.rds-ring-placeholder {
	display: grid; place-items: center;
	background: linear-gradient(140deg, var(--cardamom), var(--ink-soft));
	color: rgba(248, 243, 233, 0.35);
	font-family: var(--display); font-size: 72px;
}
.rds-hero-tag {
	position: absolute; bottom: 26px; right: 8%;
	background: var(--ivory); color: var(--ink);
	font-family: var(--display); font-style: italic; font-size: 17px;
	padding: 9px 20px; border-radius: 999px;
	box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.55);
	transform: rotate(-3deg);
}

/* ---------- sections ---------- */
.rds-section { padding: 96px 0; }

/* about */
.rds-about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.rds-about-media img, .rds-media-placeholder {
	width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
	border-radius: var(--radius);
}
.rds-media-placeholder {
	background:
		radial-gradient(circle at 30% 30%, rgba(222, 155, 60, 0.35), transparent 55%),
		linear-gradient(150deg, var(--ivory-deep), #E2D6BE);
	border: 1px solid var(--line);
}
.rds-media-tall { aspect-ratio: 3 / 4; }

/* dine-in */
.rds-dinein { background: var(--cardamom); color: var(--ivory); }
.rds-dinein .rds-body { color: rgba(248, 243, 233, 0.8); }
.rds-dinein-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.rds-list { list-style: none; margin: 22px 0; display: grid; gap: 11px; }
.rds-list li { padding-left: 26px; position: relative; }
.rds-list li::before {
	content: "◆"; position: absolute; left: 0; top: 1px;
	color: var(--saffron); font-size: 10px;
}
.rds-dinein-outro { margin-bottom: 28px; font-style: italic; }
.rds-dinein-media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); }
.rds-dinein .rds-btn-ghost { color: var(--ivory); }

/* menus */
.rds-menus { background: var(--ivory); }
.rds-tabs {
	display: flex; justify-content: center; gap: 10px;
	margin: 34px 0 10px;
}
.rds-tab {
	font-family: var(--display); font-size: 19px; font-weight: 500;
	background: transparent; color: rgba(13, 26, 28, 0.55);
	border: 1px solid var(--line); border-radius: 999px;
	padding: 12px 30px; cursor: pointer;
	transition: all 0.18s ease;
}
.rds-tab:hover { color: var(--ink); }
.rds-tab:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; }
.rds-tab.is-active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.rds-menu-panel { display: none; }
.rds-menu-panel.is-active { display: block; animation: rds-fade 0.35s ease; }
@keyframes rds-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.rds-menu-note {
	text-align: center; font-style: italic; font-family: var(--display);
	font-size: 17px; color: rgba(13, 26, 28, 0.6); margin: 14px 0 36px;
}
.rds-menu-grid {
	display: grid; grid-template-columns: repeat(2, 1fr);
	gap: 30px 56px; max-width: 980px; margin: 0 auto;
}
.rds-dish header { display: flex; align-items: baseline; gap: 12px; margin-bottom: 5px; }
.rds-dish h3 { font-family: var(--display); font-weight: 600; font-size: 19px; white-space: nowrap; }
.rds-dots { flex: 1; border-bottom: 1px dotted rgba(13, 26, 28, 0.35); transform: translateY(-4px); }
.rds-price { font-weight: 700; color: var(--saffron-deep); white-space: nowrap; }
.rds-dish p { font-size: 15px; color: rgba(13, 26, 28, 0.65); }
.rds-menu-pdf { margin-top: 44px; }

/* reservation */
.rds-reserve {
	background:
		radial-gradient(760px 420px at 100% 0%, rgba(46, 82, 69, 0.55), transparent 60%),
		var(--ink);
	color: var(--ivory);
}
.rds-reserve .rds-body { color: rgba(248, 243, 233, 0.75); margin-bottom: 26px; }
.rds-reserve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.rds-reserve-phone {
	font-family: var(--display); font-size: clamp(24px, 3vw, 32px);
	color: var(--saffron); text-decoration: none; letter-spacing: 0.02em;
}
.rds-reserve-phone:hover { text-decoration: underline; }
.rds-reserve-form {
	background: rgba(248, 243, 233, 0.05);
	border: 1px solid var(--ink-line);
	border-radius: var(--radius); padding: 30px;
	display: grid; gap: 16px;
}
.rds-field { display: grid; gap: 6px; }
.rds-field label { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(248, 243, 233, 0.6); }
.rds-field input {
	background: rgba(13, 26, 28, 0.55);
	border: 1px solid var(--ink-line);
	border-radius: 9px; padding: 12px 14px;
	color: var(--ivory); font-family: var(--body); font-size: 15px;
	color-scheme: dark;
}
.rds-field input:focus { outline: 2px solid var(--saffron); outline-offset: 1px; border-color: transparent; }
.rds-field-row { display: grid; grid-template-columns: 1.2fr 1fr 0.8fr; gap: 12px; }

/* contact */
.rds-contact { background: var(--ivory-deep); }
.rds-contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: stretch; }
.rds-contact-list { display: grid; gap: 18px; margin: 26px 0; }
.rds-contact-list dt { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--saffron-deep); margin-bottom: 3px; }
.rds-contact-list dd { font-size: 17px; }
.rds-contact-list a { text-decoration: none; }
.rds-contact-list a:hover { color: var(--saffron-deep); }
.rds-contact-note { font-style: italic; font-family: var(--display); color: rgba(13, 26, 28, 0.65); }
.rds-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 380px; }
.rds-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* gallery */
.rds-gallery-handle { text-decoration: none; }
.rds-gallery-handle:hover { color: var(--saffron-deep); }
.rds-gallery-grid {
	display: grid; grid-template-columns: repeat(5, 1fr);
	gap: 12px; margin-top: 38px;
}
.rds-gallery-item { border-radius: 10px; overflow: hidden; display: block; }
.rds-gallery-item img {
	width: 100%; aspect-ratio: 1; object-fit: cover;
	transition: transform 0.3s ease;
}
.rds-gallery-item:hover img { transform: scale(1.05); }

/* footer */
.rds-footer { background: var(--ink); color: var(--ivory); padding: 56px 0 30px; }
.rds-footer-inner {
	display: flex; flex-wrap: wrap; align-items: center; gap: 26px;
	padding-bottom: 28px; border-bottom: 1px solid var(--ink-line);
}
.rds-footer-brand { display: flex; align-items: center; gap: 12px; }
.rds-footer-logo { height: 52px; width: auto; }
.rds-footer-brand strong { display: block; font-family: var(--display); font-size: 18px; font-weight: 500; }
.rds-footer-brand span { font-size: 12.5px; color: rgba(248, 243, 233, 0.55); letter-spacing: 0.08em; }
.rds-footer-nav { display: flex; gap: 22px; margin-left: auto; }
.rds-footer-nav a, .rds-footer-social a {
	color: rgba(248, 243, 233, 0.75); text-decoration: none;
	font-size: 14px; font-weight: 600;
}
.rds-footer-nav a:hover, .rds-footer-social a:hover { color: var(--saffron); }
.rds-footer-social { display: flex; gap: 18px; }
.rds-footer-legal {
	display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
	padding-top: 22px; font-size: 13px; color: rgba(248, 243, 233, 0.5);
}
.rds-footer-legal a { color: inherit; text-decoration: none; }
.rds-footer-legal a:hover { color: var(--saffron); }

/* whatsapp float */
.rds-wa-float {
	position: fixed; right: 22px; bottom: 22px; z-index: 50;
	display: grid; place-items: center;
	width: 56px; height: 56px; border-radius: 50%;
	background: #25D366; color: #fff;
	box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.7);
	transition: transform 0.18s ease;
}
.rds-wa-float:hover { transform: translateY(-3px) scale(1.04); }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
	.rds-hero-grid, .rds-about-grid, .rds-dinein-grid,
	.rds-reserve-grid, .rds-contact-grid { grid-template-columns: 1fr; gap: 44px; }
	.rds-menu-grid { grid-template-columns: 1fr; gap: 26px; }
	.rds-gallery-grid { grid-template-columns: repeat(3, 1fr); }
	.rds-about-media { order: 2; }
	.rds-hero { padding: 140px 0 80px; }
	.rds-hero-title-b { margin-left: 0.45em; }
}

@media (max-width: 760px) {
	.rds-header-cta { display: none; }
	.rds-nav {
		display: none; position: absolute; top: 72px; left: 0; right: 0;
		flex-direction: column; gap: 0;
		background: var(--ink); border-bottom: 1px solid var(--ink-line);
		padding: 10px 24px 18px;
	}
	.rds-nav.is-open { display: flex; }
	.rds-nav a { padding: 13px 0; border-bottom: 1px solid var(--ink-line); }
	.rds-nav a:last-child { border-bottom: 0; }
	.rds-burger {
		display: grid; gap: 5px; margin-left: auto;
		background: none; border: 0; cursor: pointer; padding: 8px;
	}
	.rds-burger span { width: 22px; height: 2px; background: var(--ivory); display: block; transition: transform 0.2s ease, opacity 0.2s ease; }
	.rds-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.rds-burger.is-open span:nth-child(2) { opacity: 0; }
	.rds-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	.rds-section { padding: 68px 0; }
	.rds-field-row { grid-template-columns: 1fr; }
	.rds-gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.rds-footer-nav { margin-left: 0; flex-wrap: wrap; }
	.rds-hero-tag { right: 4%; bottom: 10px; }
	.rds-dish h3 { white-space: normal; }
}
